public class AsyncHttpClientModule extends ConnectionTestModule {
@Provides()
ListenableFutureConnection getConnectionImpl() throws IOException {
try {
return new AsyncHttpClientConnection();
} catch (RequestFailedException e) {
System.out.println(e.getMessage());
System.out.println(e.getStatusCode());
System.out.println(e.getResponseBody());
System.out.flush();