Class VerifierSupport

  • All Implemented Interfaces:
    AfterEachCallback, Extension


    @API(status=EXPERIMENTAL,
         since="5.0")
    public class VerifierSupport
    extends java.lang.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.

    Since:
    5.0
    See Also:
    Verifier, TestRule, Rule
    • Constructor Summary

      Constructors 
      Constructor Description
      VerifierSupport​()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void afterEach​(ExtensionContext context)
      Callback that is invoked after each test has been invoked.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • VerifierSupport

        public VerifierSupport​()
    • Method Detail

      • afterEach

        public void afterEach​(ExtensionContext context)
                       throws java.lang.Exception
        Description copied from interface: AfterEachCallback
        Callback that is invoked after each test has been invoked.
        Specified by:
        afterEach in interface AfterEachCallback
        Parameters:
        context - the current extension context; never null
        Throws:
        java.lang.Exception