IHttpResponse response = httpClient.call(new GetRequest("http://localhost:" + server.getLocalPort() + "/"));
Assert.assertEquals(200, response.getStatus());
Assert.assertEquals("OK", response.getBody().toString());
IWebSocketConnection webSocketConnection = httpClient.openWebSocketConnection("ws://localhost:" + server.getLocalPort());
WebSocketMessage msg = webSocketConnection.readMessage();
Assert.assertTrue(msg.isTextMessage());
Assert.assertEquals("Hello you", msg.toString());