Exemple #1
0
 public function testShape()
 {
     $object = new Note();
     $this->assertEquals(0, $object->getShapeCollection()->count());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->createRichTextShape());
     $this->assertEquals(1, $object->getShapeCollection()->count());
     $oRichText = new RichText();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\RichText', $object->addShape($oRichText));
     $this->assertEquals(2, $object->getShapeCollection()->count());
 }