Uses of Interface
io.vertx.ext.unit.TestSuite
-
Packages that use TestSuite Package Description io.vertx.ext.unit io.vertx.reactivex.ext.unit io.vertx.rxjava3.ext.unit -
-
Uses of TestSuite in io.vertx.ext.unit
Methods in io.vertx.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(Object testSuiteObject)
Create and return a new test suite configured after thetestSuiteObject
argument.static TestSuite
TestSuite. create(String name)
Create and return a new test suite.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. -
Uses of TestSuite in io.vertx.reactivex.ext.unit
Methods in io.vertx.reactivex.ext.unit that return TestSuite Modifier and Type Method Description TestSuite
TestSuite. getDelegate()
Methods in io.vertx.reactivex.ext.unit with parameters of type TestSuite Modifier and Type Method Description static TestSuite
TestSuite. newInstance(TestSuite arg)
Constructors in io.vertx.reactivex.ext.unit with parameters of type TestSuite Constructor Description TestSuite(TestSuite delegate)
-
Uses of TestSuite in io.vertx.rxjava3.ext.unit
Methods in io.vertx.rxjava3.ext.unit that return TestSuite Modifier and Type Method Description TestSuite
TestSuite. getDelegate()
Methods in io.vertx.rxjava3.ext.unit with parameters of type TestSuite Modifier and Type Method Description static TestSuite
TestSuite. newInstance(TestSuite arg)
Constructors in io.vertx.rxjava3.ext.unit with parameters of type TestSuite Constructor Description TestSuite(TestSuite delegate)
-