Assert.assertEquals(302, response.getStatus());
}
@Test
public void testLiveGet2() throws Exception {
IHttpClientEndpoint httpClient = new HttpClient();
IHttpResponse response = httpClient.call(new GetRequest("http://xlightweb.org"));
Assert.assertEquals(301, response.getStatus());
}