Junit @Runwith - with different Runners ; how does it work

106 Views Asked by At

I am trying to understand how @RunWith can accept different types of Runners. How does Junit understand or accept a different Runner and flex to run with a different runners (like SpringRunner , MockitoRunner), which are written by different vendors altogether.

1

There are 1 best solutions below

0
On BEST ANSWER

The class must extend the abstract class Runner.

From the javadoc

Element Detail
value
public abstract Class<? extends Runner> value
Returns:
a Runner class (must have a constructor that takes a single Class to run)

Any vendor can write a class which extends Runner and Junit 4 can use it. Junit 4 depends only on the abstract class.