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

  /external/mockito/src/main/java/org/mockito/internal/invocation/
DefaultInvocationFactory.java 21 public Invocation createInvocation(Object target, MockCreationSettings settings, Method method, final Callable realMethod, Object... args) {
23 return createInvocation(target, settings, method, superMethod, args);
26 public Invocation createInvocation(Object target, MockCreationSettings settings, Method method, RealMethodBehavior realMethod, Object... args) {
28 return createInvocation(target, settings, method, superMethod, args);
31 private Invocation createInvocation(Object target, MockCreationSettings settings, Method method, RealMethod superMethod, Object[] args) {
32 return createInvocation(target, method, args, superMethod, settings);
35 public static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] arguments, RealMethod realMethod, MockCreationSettings settings, Location location) {
46 private static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[]
48 return createInvocation(mock, invokedMethod, arguments, realMethod, settings, new LocationImpl());
  /external/mockito/src/test/java/org/mockito/
StaticMockingExperimentTest.java 60 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
71 Invocation verification = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
79 Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
87 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
93 Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
105 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
117 Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
129 .createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod, "foo");
137 Invocation differentArg = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod,
148 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock, withSettings().build(Foo.class), staticMethod, realMethod
    [all...]
InvocationFactoryTest.java 31 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock,
53 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock,
69 Invocation invocation = Mockito.framework().getInvocationFactory().createInvocation(mock,
  /external/mockito/src/main/java/org/mockito/invocation/
InvocationFactory.java 23 * If you integrate Mockito framework and you need an instance of {@link Invocation}, use {@link #createInvocation(Object, MockCreationSettings, Method, RealMethodBehavior, Object...)}.
31 * @deprecated Use {@link #createInvocation(Object, MockCreationSettings, Method, RealMethodBehavior, Object...)} instead.
50 Invocation createInvocation(Object target, MockCreationSettings settings, Method method, Callable realMethod, Object... args);
76 Invocation createInvocation(Object target, MockCreationSettings settings, Method method, RealMethodBehavior realMethod, Object... args);
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
InvocationHandlerAdapter.java 75 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(mock,
112 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(proxy,
  /external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
InvocationHandlerAdapter.java 52 return handler.handle(Mockito.framework().getInvocationFactory().createInvocation(proxy,
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodInterceptor.java 27 import static org.mockito.internal.invocation.DefaultInvocationFactory.createInvocation;
63 return handler.handle(createInvocation(mock, invokedMethod, arguments, realMethod, mockCreationSettings, location));
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
nashorn.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
nashorn.jar 

Completed in 601 milliseconds