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

testGetSetText() public method

public testGetSetText ( )
    public function testGetSetText()
    {
        $expectedText = 'AABBCCDD';
        $object = new Comment();
        $this->assertNull($object->getText());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Comment', $object->setText($expectedText));
        $this->assertEquals($expectedText, $object->getText());
    }