PopTest\Code\DocblockTest::testSetAndGetDesc PHP 메소드

testSetAndGetDesc() 공개 메소드

public testSetAndGetDesc ( )
    public function testSetAndGetDesc()
    {
        $d = DocblockGenerator::factory('This is the description');
        $d->setDesc('This is the new description');
        $this->assertEquals('This is the new description', $d->getDesc());
    }