Esempio n. 1
0
 public function testFormatCode()
 {
     $object = new Axis();
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Shape\\Chart\\Axis', $object->setFormatCode());
     $this->assertEquals('', $object->getFormatCode());
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Shape\\Chart\\Axis', $object->setFormatCode('AAAA'));
     $this->assertEquals('AAAA', $object->getFormatCode());
 }