@Test
public void testLiveGet() throws Exception {
IHttpClientEndpoint httpClient = new HttpClient();
IHttpResponse response = httpClient.call(new GetRequest("http://www.web.de/index.html"));
Assert.assertEquals(302, response.getStatus());
}
@Test
public void testLiveGet2() throws Exception {