Ejemplo n.º 1
0
 public function testLabelPosition()
 {
     $object = new Series();
     $this->assertEmpty($object->getHashIndex());
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Shape\\Chart\\Series', $object->setLabelPosition(Series::LABEL_INSIDEBASE));
     $this->assertEquals(Series::LABEL_INSIDEBASE, $object->getLabelPosition());
 }