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