org.mockito.internal.verification.api.VerificationDataInOrderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.verification.api;
import java.util.List;
import org.mockito.internal.invocation.InvocationMatcher;
import org.mockito.invocation.Invocation;
public class VerificationDataInOrderImpl implements VerificationDataInOrder {
private final InOrderContext inOrder;
private final List allInvocations;
private final InvocationMatcher wanted;
public VerificationDataInOrderImpl(InOrderContext inOrder, List allInvocations, InvocationMatcher wanted) {
this.inOrder = inOrder;
this.allInvocations = allInvocations;
this.wanted = wanted;
}
public List getAllInvocations() {
return allInvocations;
}
public InOrderContext getOrderingContext() {
return inOrder;
}
public InvocationMatcher getWanted() {
return wanted;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy