PhpParser\CommentTest::testGetSet PHP Method

testGetSet() public method

public testGetSet ( )
    public function testGetSet()
    {
        $comment = new Comment('/* Some comment */', 1, 10);
        $this->assertSame('/* Some comment */', $comment->getText());
        $this->assertSame('/* Some comment */', (string) $comment);
        $this->assertSame(1, $comment->getLine());
        $this->assertSame(10, $comment->getFilePos());
    }