assert annotation == Annotated.class.getAnnotation(PrimitiveMarker.class);
}
@Test
public void getAnnotationNotReferenced() throws Exception {
NotReferenced annotation = Annotated.class.getAnnotation(NotReferenced.class);
assert annotation == null;
}