Searched refs:getLastInvocation (Results 1 – 10 of 10) sorted by relevance
10 import static org.mockitoutil.TestBase.getLastInvocation;30 invocation_Void = getLastInvocation(); in init()33 invocation_void = getLastInvocation(); in init()36 invocation_String = getLastInvocation(); in init()
16 import static org.mockitoutil.TestBase.getLastInvocation;80 InvocationInfo voidMethod = new InvocationInfo(getLastInvocation()); in isVoid_invocationOnVoidMethod_returnTrue()89 InvocationInfo voidRetuningMethod = new InvocationInfo(getLastInvocation()); in isVoid_invocationOnVoidReturningMethod_returnTrue()98 InvocationInfo stringReturningMethod = new InvocationInfo(getLastInvocation()); in isVoid_invocationNonVoidMethod_returnFalse()
50 Invocation invocationOnClass = new MockitoCore().getLastInvocation(); in should_be_OK_when_calling_real_method_on_concrete_class()
36 Invocation invocation = super.getLastInvocation(); in handle_result_must_not_be_null_for_primitives()54 Invocation invocation = super.getLastInvocation(); in valid_handle_result_is_permitted()
26 multi = new InvocationMatcher(getLastInvocation()); in setup()29 shortie = new InvocationMatcher(getLastInvocation()); in setup()
68 Invocation compareTo = this.getLastInvocation(); in should_return_non_zero_for_compareTo_method()83 Invocation compareTo = this.getLastInvocation(); in should_return_zero_if_mock_is_compared_to_itself()121 Invocation findAny = this.getLastInvocation(); in verify_empty_Optional_is_returned()
139 Invocation invocation = getLastInvocation(); in should_match_varargs_using_any_varargs()153 Invocation invocation = getLastInvocation(); in should_capture_varargs_as_vararg()168 Invocation invocation = getLastInvocation(); in should_capture_arguments_when_args_count_does_NOT_match()
216 return getLastInvocation(); in mixedVarargs()221 return getLastInvocation(); in varargs()
72 public static Invocation getLastInvocation() {73 return new MockitoCore().getLastInvocation();
193 public Invocation getLastInvocation() { in getLastInvocation() method in MockitoCore