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