AtLeastXNumberOfInvocationsChecker numberOfInvocations = new AtLeastXNumberOfInvocationsChecker();
if (wantedCount == 1) {
missingInvocation.check(data.getAllInvocations(), data.getWanted());
}
numberOfInvocations.check(data.getAllInvocations(), data.getWanted(), wantedCount);
}
public void verifyInOrder(VerificationDataInOrder data) {
List<Invocation> allInvocations = data.getAllInvocations();
InvocationMatcher wanted = data.getWanted();