示例#1
0
 public function getDescription()
 {
     return AnnotationReader::create($this->reflectionClass->getDocComment())->getDescription();
 }
 public function testGettingDescription()
 {
     $expectedDescription = 'This is a test class for class reflection, nothing more, nothing less';
     $actualDescription = $this->reader->getDescription();
     $this->assertEquals($expectedDescription, $actualDescription);
 }