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

testHeight() public method

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