Home
last modified time | relevance | path

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

/external/mockito/src/main/java/org/mockito/internal/invocation/
DDefaultInvocationFactory.java21 …public Invocation createInvocation(Object target, MockCreationSettings settings, Method method, fi… in createInvocation() method in DefaultInvocationFactory
23 return createInvocation(target, settings, method, superMethod, args); in createInvocation()
26 …public Invocation createInvocation(Object target, MockCreationSettings settings, Method method, Re… in createInvocation() method in DefaultInvocationFactory
28 return createInvocation(target, settings, method, superMethod, args); in createInvocation()
31 …private Invocation createInvocation(Object target, MockCreationSettings settings, Method method, R… in createInvocation() method in DefaultInvocationFactory
32 return createInvocation(target, method, args, superMethod, settings); in createInvocation()
35 …public static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] a… in createInvocation() method in DefaultInvocationFactory
46 … private static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] in createInvocation() method in DefaultInvocationFactory
48 … return createInvocation(mock, invokedMethod, arguments, realMethod, settings, new LocationImpl()); in createInvocation()
/external/mockito/src/test/java/org/mockito/
DStaticMockingExperimentTest.java61 …Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSett… in verify_static_method()
72 …Invocation verification = Mockito.framework().getInvocationFactory().createInvocation(mock, withSe… in verify_static_method()
80 …Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSe… in verify_static_method()
89 …Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSett… in verification_failure_static_method()
95 …Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSe… in verification_failure_static_method()
107 …Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSett… in stubbing_static_method()
119 …Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSe… in stubbing_static_method()
131 … .createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod, "foo"); in do_answer_stubbing_static_method()
139 …Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSe… in do_answer_stubbing_static_method()
150 …Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSett… in verify_no_more_interactions()
[all …]
DInvocationFactoryTest.java31 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, in call_method_that_throws_a_throwable()
53 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, in call_method_that_returns_a_string()
69 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, in deprecated_api_still_works()
/external/mockito/src/main/java/org/mockito/invocation/
DInvocationFactory.java50 …Invocation createInvocation(Object target, MockCreationSettings settings, Method method, Callable … in createInvocation() method
76 …Invocation createInvocation(Object target, MockCreationSettings settings, Method method, RealMetho… in createInvocation() method
/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
DInvocationHandlerAdapter.java75 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(mock, in interceptEntryHook()
112 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(proxy,
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodInterceptor.java27 import static org.mockito.internal.invocation.DefaultInvocationFactory.createInvocation;
63 …return handler.handle(createInvocation(mock, invokedMethod, arguments, realMethod, mockCreationSet… in doIntercept()
/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
DInvocationHandlerAdapter.java52 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(proxy, in invoke()