public interface TestSuiteReport extends ReadStream<TestCaseReport>
Modifier and Type | Method and Description |
---|---|
TestSuiteReport |
endHandler(Handler<Void> endHandler)
Set an end handler.
|
TestSuiteReport |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler, the exception handler reports the test suite errors, it can be called mulitple
times before the test ends.
|
TestSuiteReport |
handler(Handler<TestCaseReport> handler)
Set a data handler.
|
String |
name() |
TestSuiteReport |
pause()
Pause the
ReadStream , it sets the buffer in fetch mode and clears the actual demand. |
TestSuiteReport |
resume()
Resume reading, and sets the buffer in
flowing mode. |
fetch, pipe, pipeTo, pipeTo
String name()
TestSuiteReport exceptionHandler(Handler<Throwable> handler)
exceptionHandler
in interface ReadStream<TestCaseReport>
exceptionHandler
in interface StreamBase
handler
- the exception handlerTestSuiteReport handler(Handler<TestCaseReport> handler)
ReadStream
handler
in interface ReadStream<TestCaseReport>
TestSuiteReport pause()
ReadStream
ReadStream
, it sets the buffer in fetch
mode and clears the actual demand.
While it's paused, no data will be sent to the data handler
.
pause
in interface ReadStream<TestCaseReport>
TestSuiteReport resume()
ReadStream
flowing
mode.
If the ReadStream
has been paused, reading will recommence on it.resume
in interface ReadStream<TestCaseReport>
TestSuiteReport endHandler(Handler<Void> endHandler)
ReadStream
endHandler
in interface ReadStream<TestCaseReport>
Copyright © 2021 Eclipse. All rights reserved.