mockit.FullVerificationsInOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006-2015 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit;
/**
* A combination of {@link FullVerifications} and {@link VerificationsInOrder}.
*
*
* // Exercise tested code.
* codeUnderTest.doSomething();
*
* // Now verify that expected invocations occurred in the same order, with no invocations left unverified.
* new FullVerificationsInOrder() {{
* mock1.firstExpectedMethod(anyInt); times = 1;
* mock2.secondExpectedMethod(1, anyString);
* MockedClass.finalMethod(anyBoolean, null);
* }};
*
*
* @see #FullVerificationsInOrder()
* @see #FullVerificationsInOrder(int)
* @see #FullVerificationsInOrder(Object...)
* @see #FullVerificationsInOrder(Integer, Object...)
* @see Tutorial
*/
public abstract class FullVerificationsInOrder extends Verifications
{
/**
* Begins in-order verification for all invocations on the mocked types/instances that can
* potentially be invoked from code under test.
*
* @see #FullVerificationsInOrder(int)
* @see #FullVerificationsInOrder(Object...)
* @see #FullVerificationsInOrder(Integer, Object...)
*/
protected FullVerificationsInOrder()
{
super(true);
verificationPhase.setAllInvocationsMustBeVerified();
}
/**
* Same as {@link #FullVerificationsInOrder()}, but considering that such invocations occurred in a given number of
* iterations.
*
* The effect of specifying a number of iterations larger than 1 (one) is equivalent to duplicating (like in "copy &
* paste") the whole sequence of verified expectations.
*
* @param numberOfIterations the positive number of iterations for the whole set of verified expectations
*
* @see #FullVerificationsInOrder(Object...)
* @see #FullVerificationsInOrder(Integer, Object...)
*/
protected FullVerificationsInOrder(int numberOfIterations)
{
super(true);
verificationPhase.setAllInvocationsMustBeVerified();
verificationPhase.setNumberOfIterations(numberOfIterations);
}
/**
* Same as {@link #FullVerificationsInOrder()}, but restricting the verification to the specified mocked types and/or
* mocked instances.
*
* @param mockedTypesAndInstancesToVerify one or more of the mocked types (ie, {@code Class} objects) and/or mocked
* instances that are in scope for the test; for a given mocked instance, all classes up to (but not
* including) {@code java.lang.Object} are considered
*
* @see #FullVerificationsInOrder()
* @see #FullVerificationsInOrder(int)
* @see #FullVerificationsInOrder(Integer, Object...)
*/
protected FullVerificationsInOrder(Object... mockedTypesAndInstancesToVerify)
{
this();
verificationPhase.setMockedTypesToFullyVerify(mockedTypesAndInstancesToVerify);
}
/**
* Same as {@link #FullVerificationsInOrder(int)}, but restricting the verification to the specified mocked types
* and/or mocked instances.
*
* @param mockedTypesAndInstancesToVerify one or more of the mocked types (ie, {@code Class} objects) and/or mocked
* instances that are in scope for the test; for a given mocked instance, all classes up to (but not
* including) {@code java.lang.Object} are considered
*
* @see #FullVerificationsInOrder()
* @see #FullVerificationsInOrder(int)
* @see #FullVerificationsInOrder(Object...)
*/
protected FullVerificationsInOrder(Integer numberOfIterations, Object... mockedTypesAndInstancesToVerify)
{
this(numberOfIterations);
verificationPhase.setMockedTypesToFullyVerify(mockedTypesAndInstancesToVerify);
}
}