public function testTagDescriptionIsReturned()
    {
        $classReflection = new Reflection\ReflectionClass('ZendTest\Code\Reflection\TestAsset\TestSampleClass5');

        $authorTag = $classReflection->getDocblock()->getTag('author');
        $this->assertEquals('Ralph Schindler <*****@*****.**>', $authorTag->getDescription());
    }