PhpOffice\PhpPresentation\Tests\Style\OutlineTest::testSetGetFill PHP 메소드

testSetGetFill() 공개 메소드

Test get/set fill
public testSetGetFill ( )
    public function testSetGetFill()
    {
        $object = new Outline();
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->setFill(new Fill()));
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
    }