public class EventBusReporter extends Object implements Reporter<EventBusReporter.EventBusReport>
| Modifier and Type | Class and Description |
|---|---|
static class |
EventBusReporter.EventBusReport |
| Constructor and Description |
|---|
EventBusReporter(Vertx vertx,
String address) |
| Modifier and Type | Method and Description |
|---|---|
void |
reportBeginTestCase(EventBusReporter.EventBusReport report,
String name)
Signals a test case began.
|
EventBusReporter.EventBusReport |
reportBeginTestSuite(String name)
Signals the test suite began.
|
void |
reportEndTestCase(EventBusReporter.EventBusReport report,
String name,
TestResult result)
Signals a test case ended.
|
void |
reportEndTestSuite(EventBusReporter.EventBusReport report)
Signals a test suite ended.
|
void |
reportError(EventBusReporter.EventBusReport report,
Throwable err)
Report a global test suite error, it can be called mulitple times between the
Reporter.reportBeginTestSuite(java.lang.String)
and the Reporter.reportEndTestSuite(R). |
public EventBusReporter.EventBusReport reportBeginTestSuite(String name)
ReporterreportBeginTestSuite in interface Reporter<EventBusReporter.EventBusReport>name - the test suite namepublic void reportBeginTestCase(EventBusReporter.EventBusReport report, String name)
ReporterreportBeginTestCase in interface Reporter<EventBusReporter.EventBusReport>report - the reportname - the test case namepublic void reportEndTestCase(EventBusReporter.EventBusReport report, String name, TestResult result)
ReporterreportEndTestCase in interface Reporter<EventBusReporter.EventBusReport>report - the reportname - the test case nameresult - the test case resultpublic void reportError(EventBusReporter.EventBusReport report, Throwable err)
ReporterReporter.reportBeginTestSuite(java.lang.String)
and the Reporter.reportEndTestSuite(R).reportError in interface Reporter<EventBusReporter.EventBusReport>report - the reporterr - the test suite errorpublic void reportEndTestSuite(EventBusReporter.EventBusReport report)
ReporterreportEndTestSuite in interface Reporter<EventBusReporter.EventBusReport>report - the reportCopyright © 2020. All rights reserved.