PhpOffice\PhpPresentation\Tests\PresentationPropertiesTest::testLastView PHP Method

testLastView() public method

public testLastView ( )
    public function testLastView()
    {
        $object = new PresentationProperties();
        $this->assertEquals(PresentationProperties::VIEW_SLIDE, $object->getLastView());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\PresentationProperties', $object->setLastView('AAAA'));
        $this->assertEquals(PresentationProperties::VIEW_SLIDE, $object->getLastView());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\PresentationProperties', $object->setLastView(PresentationProperties::VIEW_OUTLINE));
        $this->assertEquals(PresentationProperties::VIEW_OUTLINE, $object->getLastView());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\PresentationProperties', $object->setLastView());
        $this->assertEquals(PresentationProperties::VIEW_SLIDE, $object->getLastView());
    }