PhpOffice\PhpPresentation\Tests\Writer\ODPresentation\MetaInfManifestTest::testDrawingException PHP 메소드

testDrawingException() 공개 메소드

    public function testDrawingException()
    {
        $oPhpPresentation = new PhpPresentation();
        $oSlide = $oPhpPresentation->getActiveSlide();
        $oShape = $oSlide->createDrawingShape();
        $oShape->setPath(PHPPRESENTATION_TESTS_BASE_DIR . '/resources/images/filedoesntexist.png', false);
        TestHelperDOCX::getDocument($oPhpPresentation, 'ODPresentation');
    }