use of io.vertx.core.Launcher in project vert.x by eclipse.
the class RunCommandTest method testDeploymentOfJavaVerticle.
@Test
public void testDeploymentOfJavaVerticle() {
cli.dispatch(new Launcher(), new String[] { "run", HttpTestVerticle.class.getName() });
assertWaitUntil(() -> {
try {
return getHttpCode() == 200;
} catch (IOException e) {
return false;
}
});
}
Aggregations