Home
last modified time | relevance | path

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

/external/mockito/src/main/java/org/mockito/internal/invocation/
DInterceptedInvocation.java19 public class InterceptedInvocation implements Invocation, VerificationAwareInvocation { class
36 public InterceptedInvocation(MockReference<Object> mockRef, in InterceptedInvocation() method in InterceptedInvocation
141 InterceptedInvocation other = (InterceptedInvocation) o; in equals()
DDefaultInvocationFactory.java35 …public static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] a… in createInvocation()
36 return new InterceptedInvocation( in createInvocation()
46 … private static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] in createInvocation()
/external/mockito/src/test/java/org/mockitoutil/
DTestBase.java16 import org.mockito.internal.invocation.InterceptedInvocation;
81 return new InterceptedInvocation(new MockStrongReference<Object>(mock(type), false),
82 … new SerializableMethod(type.getMethod(methodName, types)), args, InterceptedInvocation.NO_OP,
/external/mockito/src/test/java/org/mockito/internal/invocation/
DInvocationBuilder.java20 import static org.mockito.internal.invocation.InterceptedInvocation.NO_OP;
64 Invocation i = new InterceptedInvocation(new MockStrongReference<Object>(mock, false), in toInvocation()