SimpleInterceptor.invoked = null;
ReturningInterceptor.invoked = null;
AnotherMixin.invoked = false;
AOPProxyFactoryMixin[] mixins = {
new AOPProxyFactoryMixin(SimpleMixin.class, new Class[]{Simple.class}),
new AOPProxyFactoryMixin(AnotherMixin.class, new Class[] {Another.class})};
Object proxy = assertCreateHollowProxy(
new Class[] {Other.class, Tagging.class},
mixins,
null,
new Class[] {Other.class, Simple.class, Tagging.class, Another.class});