Uses of Interface
org.mockito.exceptions.PrintableInvocation

Packages that use PrintableInvocation
org.mockito.exceptions Exception messages, exception hierarchies. 
org.mockito.internal.exceptions   
org.mockito.internal.invocation Invocation and related classes. 
org.mockito.internal.listeners   
org.mockito.internal.stubbing Stubbing logic. 
org.mockito.listeners Public classes relative to the call listener. 
 

Uses of PrintableInvocation in org.mockito.exceptions
 

Methods in org.mockito.exceptions with parameters of type PrintableInvocation
 void Reporter.neverWantedButInvoked(PrintableInvocation wanted, Location firstUndesired)
           
 void Reporter.tooLittleActualInvocations(Discrepancy discrepancy, PrintableInvocation wanted, Location lastActualLocation)
           
 void Reporter.tooLittleActualInvocationsInOrder(Discrepancy discrepancy, PrintableInvocation wanted, Location lastActualLocation)
           
 void Reporter.tooManyActualInvocations(int wantedCount, int actualCount, PrintableInvocation wanted, Location firstUndesired)
           
 void Reporter.tooManyActualInvocationsInOrder(int wantedCount, int actualCount, PrintableInvocation wanted, Location firstUndesired)
           
 void Reporter.wantedButNotInvoked(PrintableInvocation wanted)
           
 void Reporter.wantedButNotInvoked(PrintableInvocation wanted, java.util.List<? extends PrintableInvocation> invocations)
           
 void Reporter.wantedButNotInvokedInOrder(PrintableInvocation wanted, PrintableInvocation previous)
           
 

Method parameters in org.mockito.exceptions with type arguments of type PrintableInvocation
 void Reporter.wantedButNotInvoked(PrintableInvocation wanted, java.util.List<? extends PrintableInvocation> invocations)
           
 

Uses of PrintableInvocation in org.mockito.internal.exceptions
 

Subinterfaces of PrintableInvocation in org.mockito.internal.exceptions
 interface VerificationAwareInvocation
           
 

Uses of PrintableInvocation in org.mockito.internal.invocation
 

Classes in org.mockito.internal.invocation that implement PrintableInvocation
 class Invocation
          Method call on a mock object.
 class InvocationMatcher
           
 

Constructors in org.mockito.internal.invocation with parameters of type PrintableInvocation
StubInfo(PrintableInvocation stubbedAt)
           
 

Uses of PrintableInvocation in org.mockito.internal.listeners
 

Methods in org.mockito.internal.listeners that return PrintableInvocation
 PrintableInvocation NotifiedMethodInvocationReport.getInvocation()
           
 

Uses of PrintableInvocation in org.mockito.internal.stubbing
 

Classes in org.mockito.internal.stubbing that implement PrintableInvocation
 class StubbedInvocationMatcher
           
 

Methods in org.mockito.internal.stubbing with parameters of type PrintableInvocation
 void StubbedInvocationMatcher.markStubUsed(PrintableInvocation usedAt)
           
 

Uses of PrintableInvocation in org.mockito.listeners
 

Methods in org.mockito.listeners that return PrintableInvocation
 PrintableInvocation MethodInvocationReport.getInvocation()