PhpOffice\PhpPresentation\Tests\Shape\Chart\LegendTest::testWidth PHP Method

testWidth() public method

public testWidth ( )
    public function testWidth()
    {
        $object = new Legend();
        $value = rand(0, 100);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Legend', $object->setWidth());
        $this->assertEquals(0, $object->getWidth());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Legend', $object->setWidth($value));
        $this->assertEquals($value, $object->getWidth());
    }