PhpOffice\PhpPresentation\Tests\Writer\PowerPoint2007\RelationshipsTest::testCommentsAuthors PHP Method

testCommentsAuthors() public method

public testCommentsAuthors ( )
    public function testCommentsAuthors()
    {
        $oAuthor = new Comment\Author();
        $oComment = new Comment();
        $oComment->setAuthor($oAuthor);
        $oPhpPresentation = new PhpPresentation();
        $oPhpPresentation->getActiveSlide()->addShape($oComment);
        $pres = TestHelperDOCX::getDocument($oPhpPresentation, 'PowerPoint2007');
        $this->assertTrue($pres->elementExists('/Relationships/Relationship[@Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/commentAuthors"]', 'ppt/_rels/presentation.xml.rels'));
    }
RelationshipsTest