blob: fc48b4da4cd7a4933154a21aff98a475258c71dd [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.invocation;
import org.mockito.internal.verification.api.InOrderContext;
import org.mockito.invocation.Invocation;
import org.mockito.invocation.MatchableInvocation;
import java.util.List;
public class InvocationMarker {
private InvocationMarker(){}
public static void markVerified(List<Invocation> invocations, MatchableInvocation wanted) {
for (Invocation invocation : invocations) {
markVerified(invocation, wanted);
}
}
public static void markVerified(Invocation invocation, MatchableInvocation wanted) {
invocation.markVerified();
wanted.captureArgumentsFrom(invocation);
}
public static void markVerifiedInOrder(List<Invocation> chunk, MatchableInvocation wanted, InOrderContext context) {
markVerified(chunk, wanted);
for (Invocation i : chunk) {
context.markVerified(i);
}
}
}