PhpOffice\PhpPresentation\Tests\Shape\CommentTest::testConstruct PHP Method

testConstruct() public method

public testConstruct ( )
    public function testConstruct()
    {
        $object = new Comment();
        $this->assertNull($object->getAuthor());
        $this->assertNull($object->getText());
        $this->assertInternalType('int', $object->getDate());
        $this->assertNull($object->getHeight());
        $this->assertNull($object->getWidth());
    }