Class VerificationDataInOrderImpl
- java.lang.Object
-
- org.mockito.internal.verification.api.VerificationDataInOrderImpl
-
- All Implemented Interfaces:
VerificationDataInOrder
public class VerificationDataInOrderImpl extends java.lang.Object implements VerificationDataInOrder
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<Invocation>
allInvocations
private InOrderContext
inOrder
private MatchableInvocation
wanted
-
Constructor Summary
Constructors Constructor Description VerificationDataInOrderImpl(InOrderContext inOrder, java.util.List<Invocation> allInvocations, MatchableInvocation wanted)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Invocation>
getAllInvocations()
InOrderContext
getOrderingContext()
MatchableInvocation
getWanted()
-
-
-
Field Detail
-
inOrder
private final InOrderContext inOrder
-
allInvocations
private final java.util.List<Invocation> allInvocations
-
wanted
private final MatchableInvocation wanted
-
-
Constructor Detail
-
VerificationDataInOrderImpl
public VerificationDataInOrderImpl(InOrderContext inOrder, java.util.List<Invocation> allInvocations, MatchableInvocation wanted)
-
-
Method Detail
-
getAllInvocations
public java.util.List<Invocation> getAllInvocations()
- Specified by:
getAllInvocations
in interfaceVerificationDataInOrder
-
getOrderingContext
public InOrderContext getOrderingContext()
- Specified by:
getOrderingContext
in interfaceVerificationDataInOrder
-
getWanted
public MatchableInvocation getWanted()
- Specified by:
getWanted
in interfaceVerificationDataInOrder
-
-