Uses of Class
io.vertx.rxjava3.ext.unit.TestSuite
-
Packages that use TestSuite Package Description io.vertx.rxjava3.ext.unit -
-
Uses of TestSuite in io.vertx.rxjava3.ext.unit
Fields in io.vertx.rxjava3.ext.unit with type parameters of type TestSuite Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<TestSuite>
TestSuite. __TYPE_ARG
Methods in io.vertx.rxjava3.ext.unit that return TestSuite Modifier and Type Method Description TestSuite
TestSuite. after(Handler<TestContext> callback)
Set a callback executed after the tests.TestSuite
TestSuite. afterEach(Handler<TestContext> callback)
Set a callback executed after each test and before the suiteafter
callback.TestSuite
TestSuite. before(Handler<TestContext> callback)
Set a callback executed before the tests.TestSuite
TestSuite. beforeEach(Handler<TestContext> callback)
Set a callback executed before each test and after the suitebefore
callback.static TestSuite
TestSuite. create(String name)
Create and return a new test suite.static TestSuite
TestSuite. newInstance(TestSuite arg)
TestSuite
TestSuite. test(String name, int repeat, Handler<TestContext> testCase)
Add a new test case to the suite.TestSuite
TestSuite. test(String name, Handler<TestContext> testCase)
Add a new test case to the suite.
-