use of org.eclipse.hono.tests.CrudHttpClient in project hono by eclipse.
the class HttpTestBase method init.
/**
* Sets up clients.
*
* @param ctx The vert.x test context.
*/
@BeforeClass
public static void init(final TestContext ctx) {
helper = new IntegrationTestSupport(VERTX);
helper.init(ctx);
httpClient = new CrudHttpClient(VERTX, IntegrationTestSupport.HTTP_HOST, IntegrationTestSupport.HTTP_PORT);
}
Aggregations