PhpOffice\PhpPresentation\Tests\Reader\ODPresentationTest::testSlideName PHP Method

testSlideName() public method

public testSlideName ( )
    public function testSlideName()
    {
        $file = PHPPRESENTATION_TESTS_BASE_DIR . '/resources/files/ODP_Slide_Name.odp';
        $object = new ODPresentation();
        $oPhpPresentation = $object->load($file);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\PhpPresentation', $oPhpPresentation);
        $this->assertEquals('MaDiapo', $oPhpPresentation->getSlide(0)->getName());
    }