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