Uses of Interface
org.mockito.invocation.DescribedInvocation
-
Packages that use DescribedInvocation Package Description org.mockito.internal.debugging Whatever helps in debugging failed tests.org.mockito.internal.exceptions org.mockito.internal.handler org.mockito.internal.invocation Invocation machinery and related classes.org.mockito.internal.stubbing Stubbing logic.org.mockito.invocation Public API related to mock method invocations.org.mockito.listeners Public classes relative to the listener APIs. -
-
Uses of DescribedInvocation in org.mockito.internal.debugging
Methods in org.mockito.internal.debugging with parameters of type DescribedInvocation Modifier and Type Method Description private void
VerboseMockInvocationLogger. printInvocation(DescribedInvocation invocation)
-
Uses of DescribedInvocation in org.mockito.internal.exceptions
Subinterfaces of DescribedInvocation in org.mockito.internal.exceptions Modifier and Type Interface Description interface
VerificationAwareInvocation
Methods in org.mockito.internal.exceptions with parameters of type DescribedInvocation Modifier and Type Method Description private static java.lang.String
Reporter. createTooFewInvocationsMessage(Discrepancy discrepancy, DescribedInvocation wanted, java.util.List<Location> locations)
private static java.lang.String
Reporter. createTooManyInvocationsMessage(int wantedCount, int actualCount, DescribedInvocation wanted, java.util.List<Location> invocations)
private static java.lang.String
Reporter. createWantedButNotInvokedMessage(DescribedInvocation wanted)
static MockitoAssertionError
Reporter. neverWantedButInvoked(DescribedInvocation wanted, java.util.List<Invocation> invocations)
static MockitoAssertionError
Reporter. tooFewActualInvocations(Discrepancy discrepancy, DescribedInvocation wanted, java.util.List<Location> allLocations)
static MockitoAssertionError
Reporter. tooFewActualInvocationsInOrder(Discrepancy discrepancy, DescribedInvocation wanted, java.util.List<Location> locations)
static MockitoAssertionError
Reporter. tooManyActualInvocations(int wantedCount, int actualCount, DescribedInvocation wanted, java.util.List<Location> locations)
static MockitoAssertionError
Reporter. tooManyActualInvocationsInOrder(int wantedCount, int actualCount, DescribedInvocation wanted, java.util.List<Location> invocations)
static MockitoAssertionError
Reporter. wantedButNotInvoked(DescribedInvocation wanted)
static MockitoAssertionError
Reporter. wantedButNotInvoked(DescribedInvocation wanted, java.util.List<? extends DescribedInvocation> invocations)
static MockitoAssertionError
Reporter. wantedButNotInvokedInOrder(DescribedInvocation wanted, DescribedInvocation previous)
Method parameters in org.mockito.internal.exceptions with type arguments of type DescribedInvocation Modifier and Type Method Description static MockitoAssertionError
Reporter. wantedButNotInvoked(DescribedInvocation wanted, java.util.List<? extends DescribedInvocation> invocations)
-
Uses of DescribedInvocation in org.mockito.internal.handler
Methods in org.mockito.internal.handler that return DescribedInvocation Modifier and Type Method Description DescribedInvocation
NotifiedMethodInvocationReport. getInvocation()
-
Uses of DescribedInvocation in org.mockito.internal.invocation
Classes in org.mockito.internal.invocation that implement DescribedInvocation Modifier and Type Class Description class
InterceptedInvocation
class
InvocationMatcher
In addition to all content of the invocation, the invocation matcher contains the argument matchers.Fields in org.mockito.internal.invocation declared as DescribedInvocation Modifier and Type Field Description private DescribedInvocation
StubInfoImpl. stubbedAt
Constructors in org.mockito.internal.invocation with parameters of type DescribedInvocation Constructor Description StubInfoImpl(DescribedInvocation stubbedAt)
-
Uses of DescribedInvocation in org.mockito.internal.stubbing
Classes in org.mockito.internal.stubbing that implement DescribedInvocation Modifier and Type Class Description class
StubbedInvocationMatcher
Fields in org.mockito.internal.stubbing declared as DescribedInvocation Modifier and Type Field Description private DescribedInvocation
StubbedInvocationMatcher. usedAt
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.interface
MatchableInvocation
MatchableInvocation
wrapsInvocation
instance and holds argument matchers associated with that invocation. -
Uses of DescribedInvocation in org.mockito.listeners
Methods in org.mockito.listeners that return DescribedInvocation Modifier and Type Method Description DescribedInvocation
MethodInvocationReport. getInvocation()
-