Searched refs:InterceptedInvocation (Results  1 – 4 of 4) sorted by relevance
| /external/mockito/src/main/java/org/mockito/internal/invocation/ | 
| D | InterceptedInvocation.java | 19 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()
  | 
| D | DefaultInvocationFactory.java | 35 …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/ | 
| D | TestBase.java | 16 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/ | 
| D | InvocationBuilder.java | 20 import static org.mockito.internal.invocation.InterceptedInvocation.NO_OP; 64         Invocation i = new InterceptedInvocation(new MockStrongReference<Object>(mock, false),  in toInvocation()
  |