assertFalse(AnotherMixin.invoked);
SimpleInterceptor.invoked = null;
ReturningInterceptor.invoked = null;
SimpleMixin.invoked = false;
Another another = (Another)proxy;
another.anotherMethod();
assertFalse(SimpleMixin.invoked);
assertNull(ReturningInterceptor.invoked);
assertNull(SimpleInterceptor.invoked);
assertTrue(AnotherMixin.invoked);
}