Testing service with Vert.x 4 Web-Client

I tried to write tests with Vert.x 3 Web-Client. It is callback hell. You can read this post.

Now Vert.x 4 has been released. And it contains methods that return Future. Future can be converted to CompletableFuture. So I can block thread with method get(). It is what I need for my tests.

read more
Testing service with Vertx web-client

I am trying to test my service with vertx and junit5. Vertx people suggest web-client and junit5 extension to test web-services.

read more