Example #1
0
 public function testOutlineColor()
 {
     $color = $this->chart->getOutlineColor();
     $this->assertNull($color);
     $this->chart->setOutlineColor('#ff0000');
     $this->assertInstanceOf('AmCharts\\Chart\\Setting\\Color', $this->chart->getOutlineColor());
 }