someAnn = advisor.resolveTypedAnnotation(f, SomeAnnotation.class);
assertNull(some);
someAnn = (SomeAnnotation)advisor.resolveAnnotation(f, SomeAnnotation.class);
assertNull(some);
otherAnn = advisor.resolveTypedAnnotation(f, OtherAnnotation.class);
assertNotNull(other);
otherAnn = (OtherAnnotation)advisor.resolveAnnotation(f, OtherAnnotation.class);
assertNotNull(other);
assertEquals("field", other.value());