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>allInvocationsprivate InOrderContextinOrderprivate MatchableInvocationwanted
-
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()InOrderContextgetOrderingContext()MatchableInvocationgetWanted()
-
-
-
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:
getAllInvocationsin interfaceVerificationDataInOrder
-
getOrderingContext
public InOrderContext getOrderingContext()
- Specified by:
getOrderingContextin interfaceVerificationDataInOrder
-
getWanted
public MatchableInvocation getWanted()
- Specified by:
getWantedin interfaceVerificationDataInOrder
-
-