Annotation Type RunListeners


  • @Retention(RUNTIME)
    @Target(TYPE)
    @Inherited
    @Documented
    public @interface RunListeners
    The RunListener annotation defines class-level metadata for configuring which RunListener should be registered for test execution. List of configured RunListsner's will only be registered if the HybrisJUnit4ClassRunner is used (can be set using RunWith annotation).
    Since:
    3.0-u3
    See Also:
    RunListener
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.Class<? extends org.junit.runner.notification.RunListener>[] value
      The RunListeners to register for test execution.
    • Element Detail

      • value

        java.lang.Class<? extends org.junit.runner.notification.RunListener>[] value
        The RunListeners to register for test execution.