/** * @return void * @covers \pdepend\reflection\api\StaticReflectionInterface * @group reflection * @group reflection::api * @group unittest */ public function testGetDocCommentReturnsStringWhenDocCommentIsNotEmpty() { $interface = new StaticReflectionInterface(__CLASS__, '/** @package foo */'); $this->assertEquals('/** @package foo */', $interface->getDocComment()); }