@Test
 public void testManagedSpecialServiceImplReturnSomething() {
   managedSpecialServiceImpl.returnSomething();
   assertEquals(1, SomeInterceptor.invocationCount);
 }
 @Test
 public void testManagedSpecialServiceImplDoSomething() {
   managedSpecialServiceImpl.doSomething("foo");
   assertEquals(1, SomeInterceptor.invocationCount);
 }