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

mockit.MockClass Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.7
Show newest version
/*
 * 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 a mock class containing one or more mock methods, whose implementations will take the
 * place of the corresponding method/constructor implementations in the mocked class.
 * Each mock method in the mock class must be explicitly indicated as {@linkplain Mock such}.
 * 

* In the Tutorial * * @see #realClass realClass * @see #stubs stubs * @see #inverse inverse * @see #instantiation instantiation */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface MockClass { /** * The real class whose methods/constructors will be redefined according to the corresponding mock methods in the * mock class. *

* Alternatively, the {@code Class} object provided can point to an interface. * In that case, a proxy implementation class will be created and then used as the target class for mocking. * The only way for a test to use such a mocked class will be through the proxy instance returned by * {@link Mockit#setUpMock(Object)}, so it only makes sense to use an interface for this attribute when the mock * class is set up through that method. */ Class realClass(); /** * One or more stubbing filters which specify the set of methods and constructors in the real class that are to be * stubbed out with empty implementations. *

* Each filter must follow the syntax {@code [nameRegex][(paramTypeName...)]}, where * {@code nameRegex} is a {@linkplain java.util.regex.Pattern regular expression} for matching method names, and * {@code paramTypeName} is the name of a primitive or reference parameter type. * Actually, any suffix of the type name is enough, like "String" instead of the full class name * "java.lang.String". * If {@code nameRegex} is omitted the filter matches only constructors. * If {@code (paramTypeName...)} is omitted the filter matches methods with any parameters. *

* Note that an empty filter ({@code stubs = ""}) will match no methods or constructors in the real class, * or all methods and constructors if used with {@code inverse = true}. *

* To specify the static initializers of the class, inform the filter "<clinit>". */ String[] stubs() default {}; /** * Indicates whether the stubbing filters are to be inverted or not. * If inverted, only the methods and constructors matching them are not stubbed out. */ boolean inverse() default false; /** * Specifies when instances of the mock class should be created: * {@linkplain Instantiation#PerMockSetup every time the mock class is set up}, * {@linkplain Instantiation#PerMockInvocation every time an instance mock method is called}, or * {@linkplain Instantiation#PerMockedInstance for each mocked instance of the real class}. *

* If not specified, a mock instance will be created * {@linkplain Instantiation#PerMockInvocation for each mock invocation}. */ Instantiation instantiation() default Instantiation.PerMockInvocation; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy