{
SimpleBeanImpl bean = (SimpleBeanImpl) getBean("Intercepted");
assertFalse(TestAspect.fooCalled);
assertFalse(TestAspect.barCalled);
bean.someMethod();
assertTrue("TestAspect.foo not called", TestAspect.fooCalled);
assertFalse("TestAspect.bar was called", TestAspect.barCalled);
TestAspect.fooCalled = false;
assertFalse(TestAspect.fooCalled);