Uses of Interface
org.mockito.invocation.DescribedInvocation

Packages that use DescribedInvocation
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.invocation Public API related to invocation 
org.mockito.listeners Public classes relative to the call listener. 
 

Uses of DescribedInvocation in org.mockito.exceptions
 

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

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

Uses of DescribedInvocation in org.mockito.internal.exceptions
 

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

Uses of DescribedInvocation in org.mockito.internal.invocation
 

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

Constructors in org.mockito.internal.invocation with parameters of type DescribedInvocation
StubInfoImpl(DescribedInvocation stubbedAt)
           
 

Uses of DescribedInvocation in org.mockito.internal.listeners
 

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

Uses of DescribedInvocation in org.mockito.internal.stubbing
 

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

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

Uses of DescribedInvocation in org.mockito.invocation
 

Subinterfaces of DescribedInvocation in org.mockito.invocation
 interface Invocation
          A method call on a mock object.
 

Uses of DescribedInvocation in org.mockito.listeners
 

Methods in org.mockito.listeners that return DescribedInvocation
 DescribedInvocation MethodInvocationReport.getInvocation()
          The return type is deprecated, please assign the return value from this method to the DescribedInvocation type.