Class VerifierSupport
java.lang.Object
org.junit.jupiter.migrationsupport.rules.VerifierSupport
- All Implemented Interfaces:
AfterEachCallback
,Extension
@API(status=STABLE,
since="5.7")
public class VerifierSupport
extends Object
implements AfterEachCallback
This
Extension
provides native support for subclasses of
the Verifier
rule from JUnit 4.
@Rule
-annotated fields as well as methods are supported.
By using this class-level extension on a test class such
Verifier
implementations in legacy code bases
can be left unchanged including the JUnit 4 rule import statements.
However, if you intend to develop a new extension for JUnit 5 please use the new extension model of JUnit Jupiter instead of the rule-based model of JUnit 4.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterEach(ExtensionContext context)
Callback that is invoked after an individual test and any user-defined teardown methods for that test have been executed.
-
Constructor Details
-
VerifierSupport
public VerifierSupport()
-
-
Method Details
-
afterEach
Description copied from interface:AfterEachCallback
Callback that is invoked after an individual test and any user-defined teardown methods for that test have been executed.- Specified by:
afterEach
in interfaceAfterEachCallback
- Parameters:
context
- the current extension context; nevernull
- Throws:
Exception
-