interface TestSuiteReport : ReadStream<TestCaseReport>
The test suite reports is basically a stream of events reporting the test suite execution.
Author
Julien Viet
abstract fun endHandler(endHandler: Handler<Void>): TestSuiteReport |
|
abstract fun exceptionHandler(handler: Handler<Throwable>): TestSuiteReport
Set an exception handler, the exception handler reports the test suite errors, it can be called mulitple times before the test ends. |
|
abstract fun handler(handler: Handler<TestCaseReport>): TestSuiteReport |
|
abstract fun name(): String |
|
abstract fun pause(): TestSuiteReport |
|
abstract fun resume(): TestSuiteReport |