Method and Description |
---|
io.vertx.junit5.VertxTestContext.completing()
Use
VertxTestContext.succeedingThenComplete() instead. |
io.vertx.junit5.VertxTestContext.failing()
Use
VertxTestContext.failingThenComplete() or VertxTestContext.failing(Handler) , for example
failing(e -> checkpoint.flag()) , failing(e -> { more testing code }) , or
failing(e -> {}) . |
io.vertx.junit5.VertxTestContext.succeeding()
Use
VertxTestContext.succeedingThenComplete() or VertxTestContext.succeeding(Handler) , for example
succeeding(value -> checkpoint.flag()) , succeeding(value -> { more testing code }) , or
succeeding(value -> {}) . |
Copyright © 2021 Eclipse. All rights reserved.