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