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