public function DCOM55Test::testIssue

@expectedException Doctrine\Common\Annotations\AnnotationException @expectedExceptionMessage [Semantical Error] The class "Doctrine\Tests\Common\Annotations\Fixtures\Controller" is not annotated with . Are you sure this class can be used as annotation? If so, then you need to add to the _class_ doc comment of "Doctrine\Tests\Common\Annotations\Fixtures\Controller". If it is indeed no annotation, then you need to add @IgnoreAnnotation("Controller") to the _class_ doc comment of class Doctrine\Tests\Common\Annotations\Ticket\Dummy.

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/Ticket/DCOM55Test.php, line 16

Class

DCOM55Test
@group

Namespace

Doctrine\Tests\Common\Annotations\Ticket

Code

public function testIssue() {
  $class = new \ReflectionClass(__NAMESPACE__ . '\\Dummy');
  $reader = new \Doctrine\Common\Annotations\AnnotationReader();
  $reader
    ->getClassAnnotations($class);
}