assert annotation != null;
assert annotation instanceof Annotation;
assert annotation instanceof PrimitiveMarker;
assert annotation.intValue() == 5;
assert annotation.booleanValue();
assert annotation.longValue() == 10;
assert annotation.annotationType() == PrimitiveMarker.class;
assert annotation == Annotated.class.getAnnotation(PrimitiveMarker.class);
}