Resty.ignoreAllCerts();
Resty resty = new Resty();
TextResource response = resty.text(String.format("https://localhost:%d%s", getPort(), HelloWorldTestResource.HELLO_WORLD_PATH));
assertThat(response.toString(), equalTo(HelloWorldTestResource.HELLO_WORLD));
}