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