TestAspect.fooCalled = false;
assertFalse(TestAspect.fooCalled);
assertFalse(TestAspect.barCalled);
bean.someOtherMethod();
assertFalse("TestAspect.foo was called", TestAspect.fooCalled);
assertTrue("TestAspect.bar was not called", TestAspect.barCalled);
}
}