HomeSort by relevance Sort by last modified time
    Searched refs:CountingInterceptor (Results 1 - 3 of 3) sorted by null

  /external/guice/core/test/com/google/inject/
IntegrationTest.java 32 final CountingInterceptor counter = new CountingInterceptor();
59 static class CountingInterceptor implements MethodInterceptor {
MethodInterceptionTest.java 48 private final class CountingInterceptor implements MethodInterceptor {
150 final MethodInterceptor countingInterceptor = new CountingInterceptor();
155 countingInterceptor);
166 fooMethod, ImmutableList.of(countingInterceptor, returnNullInterceptor),
182 bindInterceptor(Matchers.any(), Matchers.any(), new CountingInterceptor());
183 bindInterceptor(Matchers.any(), Matchers.any(), new CountingInterceptor());
265 }, new CountingInterceptor());
320 CountingInterceptor interceptor = new CountingInterceptor();
    [all...]
  /external/guice/core/test/com/google/inject/internal/
ProxyFactoryTest.java 171 CountingInterceptor countingInterceptor = new CountingInterceptor();
173 aspects.add(new MethodAspect(any(), any(), doubleInterceptor, countingInterceptor));
182 assertEquals(2, countingInterceptor.count);
185 static class CountingInterceptor implements MethodInterceptor {

Completed in 1148 milliseconds