PhpOffice\PhpPresentation\Tests\Style\OutlineTest::testSetGetWidth PHP Метод

testSetGetWidth() публичный Метод

Test get/set width
public testSetGetWidth ( )
    public function testSetGetWidth()
    {
        $object = new Outline();
        $this->assertNull($object->getWidth());
        $value = rand(1, 100);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->setWidth($value));
        $this->assertEquals($value, $object->getWidth());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->setWidth(1.5));
        $this->assertEquals(1, $object->getWidth());
    }