client.toggleProfile(true);
client.addServerMapping("localhost", "127.0.0.1:8080", null);
String response = HttpUtils.doProxyGet("http://localhost/", null);
System.out.println(response);
HttpExchangeInfo info = testServer.getLastExchange();
System.out.println(info.getRequestBody());
assertTrue(info.getResponseBody().compareTo(testServer.getResponse()) == 0);
}