public class Dispatcher extends java.lang.Object implements JupiterTestListener
| Constructor and Description |
|---|
Dispatcher(Configuration configuration,
sbt.testing.EventHandler eventHandler) |
| Modifier and Type | Method and Description |
|---|---|
void |
executionFailed(java.lang.String className,
java.lang.Throwable throwable)
Called when the execution of a test task failed.
|
void |
executionFiltered(org.junit.platform.engine.TestDescriptor descriptor,
java.lang.String reason)
Called when a test has been filtered.
|
void |
executionFinished(org.junit.platform.launcher.TestIdentifier identifier,
org.junit.platform.engine.TestExecutionResult result) |
void |
executionSkipped(org.junit.platform.launcher.TestIdentifier identifier,
java.lang.String reason) |
void |
executionStarted(org.junit.platform.launcher.TestIdentifier identifier) |
public Dispatcher(Configuration configuration, sbt.testing.EventHandler eventHandler)
public void executionSkipped(org.junit.platform.launcher.TestIdentifier identifier,
java.lang.String reason)
executionSkipped in interface org.junit.platform.launcher.TestExecutionListenerpublic void executionStarted(org.junit.platform.launcher.TestIdentifier identifier)
executionStarted in interface org.junit.platform.launcher.TestExecutionListenerpublic void executionFailed(java.lang.String className,
java.lang.Throwable throwable)
JupiterTestListenerexecutionFailed in interface JupiterTestListenerclassName - The class-name as reported by TaskDef.fullyQualifiedName().throwable - The throwable which caused test execution to fail.public void executionFiltered(org.junit.platform.engine.TestDescriptor descriptor,
java.lang.String reason)
JupiterTestListenerexecutionFiltered in interface JupiterTestListenerdescriptor - The descriptor of the filtered test.reason - A string which describes why this test was filtered.public void executionFinished(org.junit.platform.launcher.TestIdentifier identifier,
org.junit.platform.engine.TestExecutionResult result)
executionFinished in interface org.junit.platform.launcher.TestExecutionListener