Home
last modified time | relevance | path

Searched refs:interceptedCallCount (Results 1 – 1 of 1) sorted by relevance

/external/guice/jdk8-tests/test/com/google/inject/jdk8/
DDefaultMethodInterceptionTest.java44 private static final AtomicInteger interceptedCallCount = new AtomicInteger(0); field in DefaultMethodInterceptionTest
48 interceptedCallCount.incrementAndGet();
55 interceptedCallCount.set(0); in setUp()
91 assertEquals(1, interceptedCallCount.get()); in testInterceptedDefaultMethod()
106 assertEquals(1, interceptedCallCount.get()); in testInterceptedDefaultMethod_calledByAnotherMethod()
136 assertEquals(0, interceptedCallCount.get()); in testInterceptedDefaultMethod_whenParentClassDefinesNonInterceptedMethod()
171 assertEquals(1, interceptedCallCount.get()); in testInterceptedDefaultMethod_whenParentClassDefinesInterceptedMethod()
204 assertEquals(2, interceptedCallCount.get()); in testInterception_ofAllMethodsOnType()
221 assertEquals(2, interceptedCallCount.get()); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod()