PopTest\Code\PropertyTest::testSetAndGetDesc PHP Метод

testSetAndGetDesc() публичный Метод

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