All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mockit.FullVerificationsInOrder Maven / Gradle / Ivy

Go to download

JMockit is a Java toolkit for automated developer testing. It contains APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external APIs; JUnit (4 & 5) and TestNG test runners are supported. It also contains an advanced code coverage tool.

There is a newer version: 1.49
Show newest version
/*
 * Copyright (c) 2006 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(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(Object...) */ protected FullVerificationsInOrder() { super(true); verificationPhase.setAllInvocationsMustBeVerified(); } /** * 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, 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) java.lang.Object are considered * * @see #FullVerificationsInOrder() */ protected FullVerificationsInOrder(Object... mockedTypesAndInstancesToVerify) { this(); verificationPhase.setMockedTypesToFullyVerify(mockedTypesAndInstancesToVerify); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy