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