PhpOffice\PhpPresentation\Tests\Writer\PowerPoint2007\SlideTest::testCommentInGroupRelationship PHP Method

testCommentInGroupRelationship() public method

    public function testCommentInGroupRelationship()
    {
        $oPhpPresentation = new PhpPresentation();
        $oSlide = $oPhpPresentation->getActiveSlide();
        $oGroup = new Group();
        $oGroup->addShape(new Comment());
        $oSlide->addShape($oGroup);
        $pres = TestHelperDOCX::getDocument($oPhpPresentation, 'PowerPoint2007');
        $this->assertTrue($pres->elementExists('/Relationships/Relationship[@Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments"]', 'ppt/slides/_rels/slide1.xml.rels'));
    }