@Test
 public void testSpecialServiceReturnSomething() {
   specialService.returnSomething();
   assertEquals(1, SomeInterceptor.invocationCount);
 }
 @Test
 public void testSpecialServiceDoSomething() {
   specialService.doSomething("foo");
   assertEquals(1, SomeInterceptor.invocationCount);
 }