PhpOffice\PhpPresentation\Tests\Shape\Chart\GridlinesTest::testGetSetOutline PHP Méthode

testGetSetOutline() public méthode

public testGetSetOutline ( )
    public function testGetSetOutline()
    {
        $object = new Gridlines();
        $oStub = $this->getMock('PhpOffice\\PhpPresentation\\Style\\Outline');
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->getOutline());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Gridlines', $object->setOutline($oStub));
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->getOutline());
    }