PopTest\Code\MethodTest::testSetAndGetDesc PHP Method

testSetAndGetDesc() public method

public testSetAndGetDesc ( )
    public function testSetAndGetDesc()
    {
        $m = MethodGenerator::factory('testMethod');
        $m->setDesc('This is the desc.');
        $m->setDesc('This is the new desc.');
        $this->assertEquals('This is the new desc.', $m->getDesc());
        $this->assertInstanceOf('Pop\\Code\\Generator\\DocblockGenerator', $m->getDocblock());
    }