Home
last modified time | relevance | path

Searched refs:invocationMatcher (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/handler/
DMockHandlerImpl.java53 InvocationMatcher invocationMatcher = matchersBinder.bindMatchers( in handle() local
57 invocationContainerImpl.setMethodForStubbing(invocationMatcher); in handle()
62 InvocationMatcher invocationMatcher = matchersBinder.bindMatchers( in handle() local
74 … VerificationDataImpl data = createVerificationData(invocationContainerImpl, invocationMatcher); in handle()
85 invocationContainerImpl.setInvocationForPotentialStubbing(invocationMatcher); in handle()
105 invocationContainerImpl.resetInvocationForPotentialStubbing(invocationMatcher); in handle()
122 …icationData(InvocationContainerImpl invocationContainerImpl, InvocationMatcher invocationMatcher) { in createVerificationData() argument
127 return new VerificationDataImpl(invocationContainerImpl, invocationMatcher); in createVerificationData()
/external/mockito/src/test/java/org/mockito/internal/invocation/
DInvocationMatcherTest.java125 …InvocationMatcher invocationMatcher = new InvocationMatcher(invocation, (List) asList(new Equals("… in should_capture_arguments_from_invocation() local
128 invocationMatcher.captureArgumentsFrom(invocation); in should_capture_arguments_from_invocation()
140 InvocationMatcher invocationMatcher = new InvocationMatcher(invocation, (List) asList(ANY)); in should_match_varargs_using_any_varargs() local
143 boolean match = invocationMatcher.matches(invocation); in should_match_varargs_using_any_varargs()
155 …InvocationMatcher invocationMatcher = new InvocationMatcher(invocation, Arrays.<ArgumentMatcher>as… in should_capture_varargs_as_vararg() local
158 invocationMatcher.captureArgumentsFrom(invocation); in should_capture_varargs_as_vararg()
171 InvocationMatcher invocationMatcher = new InvocationMatcher(invocation,(List) asList(ANY)); in should_capture_arguments_when_args_count_does_NOT_match() local
174 invocationMatcher.captureArgumentsFrom(invocation); in should_capture_arguments_when_args_count_does_NOT_match()
/external/mockito/src/main/java/org/mockito/internal/stubbing/
DInvocationContainerImpl.java42 public void resetInvocationForPotentialStubbing(InvocationMatcher invocationMatcher) { in resetInvocationForPotentialStubbing() argument
43 this.invocationForStubbing = invocationMatcher; in resetInvocationForPotentialStubbing()