Interface TestRunObserver
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TestRunObserver
An interface for an Observer who is called when a Test Run is completed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
exceptionOccurred(java.lang.Exception exception)
void
testRunFinished(TestRunResult testRun)
Will be called when the test run has been completed
-
-
-
Method Detail
-
testRunFinished
void testRunFinished(TestRunResult testRun)
Will be called when the test run has been completed- Parameters:
testRun
- the completed TestRun
-
exceptionOccurred
default void exceptionOccurred(java.lang.Exception exception)
-
-