Package | Description |
---|---|
io.vertx.ext.unit |
= Vertx unit
Asynchronous polyglot unit testing.
|
Modifier and Type | Method and Description |
---|---|
TestCompletion |
TestSuite.run()
Run the testsuite with the default options.
When the test suite is executed in a Vertx context (i.e `Vertx.currentContext()` returns a context) this
context's event loop is used for running the test suite.
|
TestCompletion |
TestSuite.run(TestOptions options)
Run the testsuite with the specified
options .
When the test suite is executed in a Vertx context (i.e `Vertx.currentContext()` returns a context) this
context's event loop is used for running the test suite unless the TestOptions.setUseEventLoop(Boolean)
is set to false . |
TestCompletion |
TestSuite.run(io.vertx.core.Vertx vertx)
Run the testsuite with the default options and the specified
vertx instance.
The test suite will be executed on the event loop provided by the vertx argument. |
TestCompletion |
TestSuite.run(io.vertx.core.Vertx vertx,
TestOptions options)
Run the testsuite with the specified
options and the specified vertx instance.
The test suite will be executed on the event loop provided by the vertx argument when
TestOptions.setUseEventLoop(Boolean) is not set to false . |
Copyright © 2018 Eclipse. All rights reserved.