vertx-unit icon indicating copy to clipboard operation
vertx-unit copied to clipboard

Async polyglot unit testing for Vert.x.

Results 10 vertx-unit issues
Sort by recently updated
recently updated
newest added

See https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

So we can use it to provide details of where the assertion was created and report it.

Solving #65 : Future return type for annotated JUnit methods.

to review

I wrote a small extension to VertxUnitRunner that adds support for test methods with "Future" return type. Usage example: ```java @Test public Future test() { return Future.succeededFuture(); } ``` The...

Hi I have an issue similar to [If an exception occurs, the test does not fail, but hangs #52](https://github.com/vert-x3/vertx-unit/issues/52). I added exceptionHandler with fail() but it still does not work,...

While trying to implement a test case in which i wanted RunTestOnContext and i also wanted to run another rule that depends on inputs from RunTestOnContext, bt since every thing...

An asynchronous operation called in doOnUnsubscribe after the async.complete() call is terminated. The problem occurs in the tests, if async.complete () is called, then the asynchronous call in the doOnUnsubscribe...

I really like the [RxJava TestScheduler](http://reactivex.io/RxJava/javadoc/io/reactivex/schedulers/TestScheduler.html) and the ability to control the time, rather than having to wait for however long it takes for events to actually be emitted in...

This pull request allow to define a global repeat behaviour mode : ``` java @RunWith(VertxUnitRunner.class) @Repeat(value = AsyncUtilsTest.REPEAT_LIMIT, silent = true) public final class AsyncUtilsTest { /** * Limits */...

to review