PopTest\Code\CodeTest::testSetAndGetDocblock PHP Méthode

testSetAndGetDocblock() public méthode

    public function testSetAndGetDocblock()
    {
        $c = new Generator('TestClass.php', Generator::CREATE_CLASS);
        $c->setDocblock(new DocblockGenerator('This is a test desc.'));
        $this->assertEquals('This is a test desc.', $c->getDocblock()->getDesc());
    }