コード例 #1
0
ファイル: CursorTest.php プロジェクト: neeckeloo/AmChartsPHP
 public function testSetPanEnabled()
 {
     $this->cursor->setPanEnabled(true);
     $this->assertTrue($this->cursor->isPanEnabled());
     $this->cursor->setPanEnabled(false);
     $this->assertFalse($this->cursor->isPanEnabled());
 }