Uses of Class
org.mockito.internal.invocation.InvocationMatcher

Packages that use InvocationMatcher
org.mockito.internal.debugging Whatever helps in debugging failed tests 
org.mockito.internal.invocation Invocation and related classes. 
org.mockito.internal.stubbing Stubbing logic. 
org.mockito.internal.verification Verification logic. 
org.mockito.internal.verification.api This package should be open to public once verification API is fully finished 
org.mockito.internal.verification.checkers verification checkers 
 

Uses of InvocationMatcher in org.mockito.internal.debugging
 

Methods in org.mockito.internal.debugging with parameters of type InvocationMatcher
 void LoggingListener.foundStubCalledWithDifferentArgs(Invocation unused, InvocationMatcher unstubbed)
           
 void FindingsListener.foundStubCalledWithDifferentArgs(Invocation unused, InvocationMatcher unstubbed)
           
 void LoggingListener.foundUnstubbed(InvocationMatcher unstubbed)
           
 void FindingsListener.foundUnstubbed(InvocationMatcher unstubbed)
           
 

Constructor parameters in org.mockito.internal.debugging with type arguments of type InvocationMatcher
WarningsFinder(java.util.List<Invocation> unusedStubs, java.util.List<InvocationMatcher> allInvocations)
           
WarningsPrinterImpl(java.util.List<Invocation> unusedStubs, java.util.List<InvocationMatcher> unstubbedInvocations)
           
WarningsPrinterImpl(java.util.List<Invocation> unusedStubs, java.util.List<InvocationMatcher> allInvocations, boolean warnAboutUnstubbed)
           
 

Uses of InvocationMatcher in org.mockito.internal.invocation
 

Methods in org.mockito.internal.invocation that return InvocationMatcher
 InvocationMatcher MatchersBinder.bindMatchers(ArgumentMatcherStorage argumentMatcherStorage, Invocation invocation)
           
 

Methods in org.mockito.internal.invocation that return types with arguments of type InvocationMatcher
static java.util.List<InvocationMatcher> InvocationMatcher.createFrom(java.util.List<Invocation> invocations)
           
 

Methods in org.mockito.internal.invocation with parameters of type InvocationMatcher
 boolean ArgumentsComparator.argumentsMatch(InvocationMatcher invocationMatcher, Invocation actual)
           
 boolean ArgumentsComparator.argumentsMatch(InvocationMatcher invocationMatcher, java.lang.Object[] actualArgs)
           
 java.util.List<Invocation> InvocationsFinder.findAllMatchingUnverifiedChunks(java.util.List<Invocation> invocations, InvocationMatcher wanted, InOrderContext orderingContext)
           
 java.util.List<Invocation> InvocationsFinder.findInvocations(java.util.List<Invocation> invocations, InvocationMatcher wanted)
           
 java.util.List<Invocation> InvocationsFinder.findMatchingChunk(java.util.List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context)
          some examples how it works: Given invocations sequence: 1,1,2,1 if wanted is 1 and mode is times(2) then returns 1,1 if wanted is 1 and mode is atLeast() then returns 1,1,1 if wanted is 1 and mode is times(x), where x != 2 then returns 1,1,1
 Invocation InvocationsFinder.findSimilarInvocation(java.util.List<Invocation> invocations, InvocationMatcher wanted)
           
 

Uses of InvocationMatcher in org.mockito.internal.stubbing
 

Subclasses of InvocationMatcher in org.mockito.internal.stubbing
 class StubbedInvocationMatcher
           
 

Methods in org.mockito.internal.stubbing with parameters of type InvocationMatcher
 void InvocationContainerImpl.resetInvocationForPotentialStubbing(InvocationMatcher invocationMatcher)
           
 void InvocationContainerImpl.setInvocationForPotentialStubbing(InvocationMatcher invocation)
           
 void InvocationContainerImpl.setMethodForStubbing(InvocationMatcher invocation)
           
 

Constructors in org.mockito.internal.stubbing with parameters of type InvocationMatcher
StubbedInvocationMatcher(InvocationMatcher invocation, Answer answer)
           
 

Uses of InvocationMatcher in org.mockito.internal.verification
 

Methods in org.mockito.internal.verification that return InvocationMatcher
 InvocationMatcher VerificationDataImpl.getWanted()
           
 

Constructors in org.mockito.internal.verification with parameters of type InvocationMatcher
VerificationDataImpl(InvocationContainer invocations, InvocationMatcher wanted)
           
 

Uses of InvocationMatcher in org.mockito.internal.verification.api
 

Methods in org.mockito.internal.verification.api that return InvocationMatcher
 InvocationMatcher VerificationData.getWanted()
           
 InvocationMatcher VerificationDataInOrder.getWanted()
           
 InvocationMatcher VerificationDataInOrderImpl.getWanted()
           
 

Constructors in org.mockito.internal.verification.api with parameters of type InvocationMatcher
VerificationDataInOrderImpl(InOrderContext inOrder, java.util.List<Invocation> allInvocations, InvocationMatcher wanted)
           
 

Uses of InvocationMatcher in org.mockito.internal.verification.checkers
 

Methods in org.mockito.internal.verification.checkers with parameters of type InvocationMatcher
 void MissingInvocationChecker.check(java.util.List<Invocation> invocations, InvocationMatcher wanted)
           
 void NumberOfInvocationsChecker.check(java.util.List<Invocation> invocations, InvocationMatcher wanted, int wantedCount)
           
 void AtLeastXNumberOfInvocationsChecker.check(java.util.List<Invocation> invocations, InvocationMatcher wanted, int wantedCount)
           
 void AtLeastXNumberOfInvocationsInOrderChecker.check(java.util.List<Invocation> invocations, InvocationMatcher wanted, int wantedCount)
           
 void NumberOfInvocationsInOrderChecker.check(java.util.List<Invocation> invocations, InvocationMatcher wanted, int wantedCount, InOrderContext context)
           
 void MissingInvocationInOrderChecker.check(java.util.List<Invocation> invocations, InvocationMatcher wanted, VerificationMode mode, InOrderContext context)