PopTest\Code\DocblockTest::testSetAndGetTags PHP Method

testSetAndGetTags() public method

public testSetAndGetTags ( )
    public function testSetAndGetTags()
    {
        $d = DocblockGenerator::factory('This is the description');
        $d->setTags(array('Company' => 'Test Company'));
        $this->assertEquals('Test Company', $d->getTag('Company'));
    }