ITestBean bean = (ITestBean) context.getBean("testBean");
ExceptionHandlingAspect aspect = (ExceptionHandlingAspect) context.getBean("aspect");
assertTrue(AopUtils.isAopProxy(bean));
try {
bean.unreliableFileOperation();
}
catch (IOException e) {
//
}