org.mockito.junit.MockitoJUnitRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-core Show documentation
Show all versions of mockito-core Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.junit;
import java.lang.reflect.InvocationTargetException;
import org.junit.runner.Description;
import org.junit.runner.Runner;
import org.junit.runner.manipulation.Filter;
import org.junit.runner.manipulation.Filterable;
import org.junit.runner.manipulation.NoTestsRemainException;
import org.junit.runner.notification.RunNotifier;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.mockito.internal.runners.RunnerFactory;
import org.mockito.internal.runners.RunnerImpl;
import org.mockito.internal.runners.StrictRunner;
/**
* Compatible with JUnit 4.4 and higher, this runner adds following behavior:
*
* -
* (new since Mockito 2.1.0) Detects unused stubs in the test code.
* See {@link org.mockito.exceptions.misusing.UnnecessaryStubbingException}.
* To opt-out from this feature, use {@code}@RunWith(MockitoJUnitRunner.Silent.class){@code}
*
-
* Initializes mocks annotated with {@link Mock},
* so that explicit usage of {@link MockitoAnnotations#initMocks(Object)} is not necessary.
* Mocks are initialized before each test method.
*
-
* validates framework usage after each test method. See javadoc for {@link Mockito#validateMockitoUsage()}.
*
*
* Runner is completely optional - there are other ways you can get @Mock working, for example by writing a base class.
* Explicitly validating framework usage is also optional because it is triggered automatically by Mockito every time you use the framework.
* See javadoc for {@link Mockito#validateMockitoUsage()}.
*
* Read more about @Mock annotation in javadoc for {@link MockitoAnnotations}
*
* @RunWith(MockitoJUnitRunner.class)
* public class ExampleTest {
*
* @Mock
* private List list;
*
* @Test
* public void shouldDoSomething() {
* list.add(100);
* }
* }
*
*/
public class MockitoJUnitRunner extends Runner implements Filterable {
/**
* This Mockito JUnit Runner implementation ignores unused stubs
* (e.g. it remains 'silent' even if unused stubs are present).
* This was the behavior of Mockito JUnit runner in versions 1.*.
* Using this implementation of the runner is not recommended.
* Engineers should care for removing unused stubbings because they are dead code,
* they add unnecessary details, potentially making the test code harder to comprehend.
* If you have good reasons to use the silent runner, let us know at the mailing list
* or raise an issue in our issue tracker.
*
* See also {@link org.mockito.exceptions.misusing.UnnecessaryStubbingException}
*
* @since 2.1.0
*/
public static class Silent extends MockitoJUnitRunner {
public Silent(Class> klass) throws InvocationTargetException {
super(new RunnerFactory().create(klass));
}
}
/**
* Detects unused stubs and reports them as failures. Default behavior.
* See {@link org.mockito.exceptions.misusing.UnnecessaryStubbingException}
*
* @since 2.1.0
*/
public static class Strict extends MockitoJUnitRunner {
public Strict(Class> klass) throws InvocationTargetException {
super(new StrictRunner(new RunnerFactory().create(klass), klass));
}
}
private final RunnerImpl runner;
public MockitoJUnitRunner(Class> klass) throws InvocationTargetException {
//by default, StrictRunner is used. We can change that potentially based on feedback from users
this(new StrictRunner(new RunnerFactory().create(klass), klass));
}
MockitoJUnitRunner(RunnerImpl runner) throws InvocationTargetException {
this.runner = runner;
}
@Override
public void run(final RunNotifier notifier) {
runner.run(notifier);
}
@Override
public Description getDescription() {
return runner.getDescription();
}
public void filter(Filter filter) throws NoTestsRemainException {
//filter is required because without it UnrootedTests show up in Eclipse
runner.filter(filter);
}
}