mockit.internal.expectations.VerifiedExpectation Maven / Gradle / Ivy
/*
* Copyright (c) 2006-2013 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations;
import java.util.*;
import org.jetbrains.annotations.*;
import mockit.internal.expectations.argumentMatching.*;
final class VerifiedExpectation
{
@NotNull final Expectation expectation;
final Object[] arguments;
@Nullable final List argMatchers;
final int replayIndex;
VerifiedExpectation(
@NotNull Expectation expectation, Object[] arguments, @Nullable List argMatchers,
int replayIndex)
{
this.expectation = expectation;
this.arguments = arguments;
this.argMatchers = argMatchers;
this.replayIndex = replayIndex;
}
}