@group DDC-77
public function testAnnotationWithoutClassIsIgnoredWithoutWarning() {
$parser = new DocParser();
$parser
->setIgnoreNotImportedAnnotations(true);
$result = $parser
->parse("@param");
$this
->assertEquals(0, count($result));
}