@Test
public void testSimpleAppResponse() throws Exception
{
org.sentinel.servers.http.Client client = (org.sentinel.servers.http.Client) getClient();
HTTPResponse response = client.sendRequest("/simpleapp?a=1", "");
assertEquals(200, response.getHTTPHeaders().getStatus());
assertTrue(response.getRawResponse().contains("SimpleApp"));
}