Uses of Interface
org.mockito.invocation.DescribedInvocation
-
Packages that use DescribedInvocation Package Description 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 invocationorg.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 Modifier and Type Method Description 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 Modifier and Type Method Description 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 Modifier and Type Interface Description interface
VerificationAwareInvocation
-
Uses of DescribedInvocation in org.mockito.internal.invocation
Classes in org.mockito.internal.invocation that implement DescribedInvocation Modifier and Type Class Description class
InvocationImpl
Method call on a mock object.class
InvocationMatcher
Constructors in org.mockito.internal.invocation with parameters of type DescribedInvocation Constructor Description StubInfoImpl(DescribedInvocation stubbedAt)
-
Uses of DescribedInvocation in org.mockito.internal.listeners
Methods in org.mockito.internal.listeners that return DescribedInvocation Modifier and Type Method Description DescribedInvocation
NotifiedMethodInvocationReport. getInvocation()
-
Uses of DescribedInvocation in org.mockito.internal.stubbing
Classes in org.mockito.internal.stubbing that implement DescribedInvocation Modifier and Type Class Description class
StubbedInvocationMatcher
Methods in org.mockito.internal.stubbing with parameters of type DescribedInvocation Modifier and Type Method Description void
StubbedInvocationMatcher. markStubUsed(DescribedInvocation usedAt)
-
Uses of DescribedInvocation in org.mockito.invocation
Subinterfaces of DescribedInvocation in org.mockito.invocation Modifier and Type Interface Description interface
Invocation
A method call on a mock object. -
Uses of DescribedInvocation in org.mockito.listeners
Methods in org.mockito.listeners that return DescribedInvocation Modifier and Type Method Description DescribedInvocation
MethodInvocationReport. getInvocation()
The return type is deprecated, please assign the return value from this method to theDescribedInvocation
type.
-