JUnit Runner Mockito Plugin example

Fully functional Mockito plugin for JUnitRunner

License

License

Categories

Categories

JUnit Unit Testing Mockito
GroupId

GroupId

com.github.junitrunner
ArtifactId

ArtifactId

junitrunner-mockito
Last Version

Last Version

0.0.2
Release Date

Release Date

Type

Type

jar
Description

Description

JUnit Runner Mockito Plugin example
Fully functional Mockito plugin for JUnitRunner

Download junitrunner-mockito

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.junitrunner/junitrunner-mockito/ -->
<dependency>
    <groupId>com.github.junitrunner</groupId>
    <artifactId>junitrunner-mockito</artifactId>
    <version>0.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.junitrunner/junitrunner-mockito/
implementation 'com.github.junitrunner:junitrunner-mockito:0.0.2'
// https://jarcasting.com/artifacts/com.github.junitrunner/junitrunner-mockito/
implementation ("com.github.junitrunner:junitrunner-mockito:0.0.2")
'com.github.junitrunner:junitrunner-mockito:jar:0.0.2'
<dependency org="com.github.junitrunner" name="junitrunner-mockito" rev="0.0.2">
  <artifact name="junitrunner-mockito" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.junitrunner', module='junitrunner-mockito', version='0.0.2')
)
libraryDependencies += "com.github.junitrunner" % "junitrunner-mockito" % "0.0.2"
[com.github.junitrunner/junitrunner-mockito "0.0.2"]

Dependencies

compile (2)

Group / Artifact Type Version
com.github.junitrunner : junitrunner jar 0.0.2
org.mockito : mockito-core jar 1.9.5

Project Modules

There are no modules declared in this project.

junitrunner

JUnit Runner implementation which allows different frameworks to collaborate in the same test case.

JUnit allows to ehance test classes in a several ways. Most straigh forward and most used way is to use acustom Runner, via @RunWith annotation. And frameworks like Spring, Unitils, Mockito and others provide those custom Runners for our pleasure. Works like a charm until you want to use 2 frameworks at once. You can only have 1 runner.

So I've created a runner which supports Plugins. From test case developer perspective it should look like:

@Runwith(JUnitRunner.class)
@WithPlugins({SpringPlugin.class,UnitilsPlugin.class})
public class ATest {
...
}

It is my hope that eventually JUnit developers will eventually provide runner like this. But so far they are so enthusiastic. And I hope that framework profiders will start providing / maintaining plugins. For now, I've converted their Runners to Plugins, which should be fully functional.

Versions

Version
0.0.2
0.0.1