public function testTopLevelAnnotation() {
$reader = $this
->getReader();
$annotations = $reader
->getPropertyAnnotations(new \ReflectionProperty('Doctrine\\Tests\\Common\\Annotations\\TestTopLevelAnnotationClass', 'field'));
$this
->assertEquals(1, count($annotations));
$this
->assertInstanceOf('\\TopLevelAnnotation', reset($annotations));
}