use of io.vertx.core.CompositeFuture in project vert.x by eclipse.
the class FutureTest method testAllWithEmptyList.
@Test
public void testAllWithEmptyList() {
CompositeFuture composite = CompositeFuture.all(Collections.emptyList());
assertTrue(composite.isComplete());
}
use of io.vertx.core.CompositeFuture in project vert.x by eclipse.
the class FutureTest method testJoinWithEmptyList.
@Test
public void testJoinWithEmptyList() {
CompositeFuture composite = CompositeFuture.join(Collections.emptyList());
assertTrue(composite.isComplete());
}
Aggregations