We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Vertx Rxjava 2 sample, I tried to use all vertx-rx-rxjava2 APIs instead of the vertex core.
But the io.vertx.reactivex.core.Vertx can not be injected in the JUnit 5 methods like the normal Vertx.
io.vertx.reactivex.core.Vertx
My application is based on the following stack:
I have to wrap it myself like this:
WebClient client = WebClient.create(new io.vertx.reactivex.core.Vertx(vertx));
The text was updated successfully, but these errors were encountered:
which vertx version ?
Sorry, something went wrong.
Vertx 4.0.0
@jponge ?
As documented in the release notes, you need to add a dependency on https://github.com/vert-x3/vertx-rx/tree/master/rx-junit5-providers/vertx-junit5-rx-java2
@jponge @vietj Thanks.
No branches or pull requests
In Vertx Rxjava 2 sample, I tried to use all vertx-rx-rxjava2 APIs instead of the vertex core.
But the
io.vertx.reactivex.core.Vertx
can not be injected in the JUnit 5 methods like the normal Vertx.My application is based on the following stack:
I have to wrap it myself like this:
The text was updated successfully, but these errors were encountered: