PhpOffice\PhpPresentation\Tests\Shape\GroupTest::testExtentY PHP Method

testExtentY() public method

public testExtentY ( )
    public function testExtentY()
    {
        $object = new Group();
        $line1 = new Line(10, 20, 30, 40);
        $object->addShape($line1);
        $this->assertEquals(40, $object->getExtentY());
    }