Example #1
0
 public function testShowPercentage()
 {
     $object = new Series();
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Shape\\Chart\\Series', $object->setShowPercentage(true));
     $this->assertTrue($object->hasShowPercentage());
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Shape\\Chart\\Series', $object->setShowPercentage(false));
     $this->assertFalse($object->hasShowPercentage());
 }