Ejemplo n.º 1
0
 public function testHashIndex()
 {
     $object = new Axis();
     $value = rand(1, 100);
     $this->assertEmpty($object->getHashIndex());
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Shape\\Chart\\Axis', $object->setHashIndex($value));
     $this->assertEquals($value, $object->getHashIndex());
 }