How to replace @Rule annotation in Junit 5?
In a general way, what you did with @Rule
and @ClassRule
in JUnit 4 should be done with @ExtendWith
and Extension
that associated provide a very close feature in JUnit 5.
It works as standards JUnit lifecycle hooks but that it is extracted in a Extension
class. And similarly to @Rule
, as many Extension
s as required may be added for a test class.
To handle the issue you have several possible approaches among :
- keep the JUnit 4 way (JUnit 5 owns the JUnit Vintage part that allows to execute JUnit 3 or 4 tests).
- rewrite the
@Rule
as anExtension
. - do the actual processing done by
WireMockRule
(start the server, execute your tests and stop the server) in each test of class with@BeforeEach
and@AfterEach
hook methods. - use a third library that implements the equivalent of WireMockRule in the JUnit 5 Extension way such as https://github.com/lanwen/wiremock-junit5
Note that your issue already discussed in the JUnit 5 Issues.
JUnit 4 annotations @Rule
and @ClassRule
do not exist in JUnit 5. Basically there is a new extension model that can be used to implement extensions with the same functionality. These extensions can be used with the @ExtendWith
annotation.
There is a limited migration support for a subset of JUnit 4 rules in the junit-jupiter-migrationsupport module. Unfortunately, it's only limited to subclasses of ExternalResource
and Verifier
.
Before wiremock has official support for JUnit you have some workarounds:
- Run JUnit 4 tests side by side with JUnit 5 tests with the junit-vintage-engine.
- Start and stop the server yourself in the test code.
- Use a 3rd party extension like wiremock-junit5 or wiremock-extension.