PhpOffice\PhpPresentation\Tests\Writer\PowerPoint2007Test::testLayoutPack PHP Méthode

testLayoutPack() public méthode

Test LayoutPack
Deprecation: 0.7
public testLayoutPack ( )
    public function testLayoutPack()
    {
        $oLayoutPack = $this->getMock('PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007\\LayoutPack\\AbstractLayoutPack');
        $object = new PowerPoint2007();
        $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007\\LayoutPack\\AbstractLayoutPack", $object->getLayoutPack());
        $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007", $object->setLayoutPack());
        $this->assertNull($object->getLayoutPack());
        $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007", $object->setLayoutPack($oLayoutPack));
        $this->assertInstanceOf("PhpOffice\\PhpPresentation\\Writer\\PowerPoint2007\\LayoutPack\\AbstractLayoutPack", $object->getLayoutPack());
    }