PhpOffice\PhpPresentation\Tests\Reader\PowerPoint2007Test::testMarkAsFinal PHP Method

testMarkAsFinal() public method

public testMarkAsFinal ( )
    public function testMarkAsFinal()
    {
        $file = PHPPRESENTATION_TESTS_BASE_DIR . '/resources/files/Sample_12.pptx';
        $object = new PowerPoint2007();
        $oPhpPresentation = $object->load($file);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\PhpPresentation', $oPhpPresentation);
        $this->assertFalse($oPhpPresentation->getPresentationProperties()->isMarkedAsFinal());
        $file = PHPPRESENTATION_TESTS_BASE_DIR . '/resources/files/PPTX_MarkAsFinal.pptx';
        $object = new PowerPoint2007();
        $oPhpPresentation = $object->load($file);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\PhpPresentation', $oPhpPresentation);
        $this->assertTrue($oPhpPresentation->getPresentationProperties()->isMarkedAsFinal());
    }