PopTest\Code\DocblockTest::testSetAndGetDesc PHP Method

testSetAndGetDesc() public method

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());
    }