assertNull(ReturningInterceptor.invoked);
assertFalse(AnotherMixin.invoked);
SimpleInterceptor.invoked = null;
SimpleMixin.invoked = false;
Other other = (Other)proxy;
other.otherMethod();
assertFalse(SimpleMixin.invoked);
assertNotNull(ReturningInterceptor.invoked);
assertEquals("otherMethod", ReturningInterceptor.invoked.getName());
assertNull(SimpleInterceptor.invoked);
assertFalse(AnotherMixin.invoked);