mockit.UsingMocksAndStubs 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 developer (unit/integration) testing.
It contains mocking APIs and other tools, 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-2011 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit;
import java.lang.annotation.*;
/**
* Indicates one or more {@linkplain #value() classes} to be mocked or stubbed out for the whole test class or the whole
* test suite (in the case of a JUnit 4 test suite definition class).
*
* In the Tutorial
*
* @see MockClass
* @see Mockit#setUpMocks
* @see Mockit#stubOut
*/
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface UsingMocksAndStubs
{
/**
* A mix of mock and real classes from which the set of methods and constructors to be mocked or stubbed out is
* obtained.
*
* A mock class is one {@linkplain MockClass annotated as such}.
* It can define mocks and/or stubs for individual methods/constructors in a real class.
*
* A "real class" is any class not annotated with {@link MockClass} which will have all of its methods and
* constructors, as well static initializers, stubbed out.
*/
Class>[] value();
}