ProxyContainer<AroundInvokeBean> container = new ProxyContainer<AroundInvokeBean>("SuperMethodTestCase", "InterceptorContainer", AroundInvokeBean.class);
Class<?> interfaces[] = { AroundInvokeIF.class };
AroundInvokeIF proxy = container.constructProxy(interfaces);
proxy.afterBeginTest();
log.info("======= Done");
}
}