public interface JupiterTestListener
extends org.junit.platform.launcher.TestExecutionListener
| Modifier and Type | Method and Description |
|---|---|
default void |
executionFailed(java.lang.String className,
java.lang.Throwable throwable)
Called when the execution of a test task failed.
|
default void |
executionFiltered(org.junit.platform.engine.TestDescriptor descriptor,
java.lang.String reason)
Called when a test has been filtered.
|
default void executionFailed(java.lang.String className,
java.lang.Throwable throwable)
className - The class-name as reported by TaskDef.fullyQualifiedName().throwable - The throwable which caused test execution to fail.default void executionFiltered(org.junit.platform.engine.TestDescriptor descriptor,
java.lang.String reason)
descriptor - The descriptor of the filtered test.reason - A string which describes why this test was filtered.