public function testIssue() {
$reader = new \Doctrine\Common\Annotations\AnnotationReader();
$result = $reader
->getClassAnnotations(new \ReflectionClass(__NAMESPACE__ . "\\MappedClass"));
foreach ($result as $annot) {
$classAnnotations[get_class($annot)] = $annot;
}
$this
->assertTrue(!isset($classAnnotations['']), 'Class "xxx" is not a valid entity or mapped super class.');
}