public function DCOM55Test::testParseAnnotationDocblocks

File

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

Class

DCOM55Test
@group

Namespace

Doctrine\Tests\Common\Annotations\Ticket

Code

public function testParseAnnotationDocblocks() {
  $class = new \ReflectionClass(__NAMESPACE__ . '\\DCOM55Annotation');
  $reader = new \Doctrine\Common\Annotations\AnnotationReader();
  $annots = $reader
    ->getClassAnnotations($class);
  $this
    ->assertEquals(0, count($annots));
}