mockit.package-info Maven / Gradle / Ivy
/*
* Copyright (c) 2006-2013 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
/**
* Provides the classes and annotations used when writing tests with the JMockit mocking APIs.
*
* The {@link mockit.Expectations} class provides an API for the traditional record-replay model of recording
* expected invocations which are later replayed and implicitly verified.
* This API makes use of the {@link mockit.Mocked} annotation.
*
* The {@link mockit.Verifications} class, when combined with the {@link mockit.NonStrictExpectations} class, extends
* the record-replay model to a record-replay-verify model, where the record phase can be left empty, with
* expected invocations verified explicitly after exercising the code under test (ie, after the replay phase).
*
* The {@linkplain mockit.MockUp MockUp<T>
} generic class (where {@code T} is the mocked type) allows
* the definition of fake implementations for arbitrary classes.
*/
package mockit;