Package io.vertx.ext.unit.report
Interface TestCaseReport
-
public interface TestCaseReport
Report the execution of a test case.- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestCaseReport
endHandler(Handler<TestResult> handler)
Set a callback for completion, the specifiedhandler
is invoked when the test exec has completed.String
name()
-
-
-
Method Detail
-
name
String name()
- Returns:
- the test case name
-
endHandler
TestCaseReport endHandler(Handler<TestResult> handler)
Set a callback for completion, the specifiedhandler
is invoked when the test exec has completed.- Parameters:
handler
- the completion handler- Returns:
- a reference to this, so the API can be used fluently
-
-