response = httpClient.call(new GetRequest("http://localhost:" + server.getLocalPort() + "/ws/test"));
Assert.assertEquals(404, response.getStatus());
IWebSocketConnection wsCon = httpClient.openWebSocketConnection("http://localhost:" + server.getLocalPort() + "/ws/test");
wsCon.writeMessage(new TextMessage("Hello"));
Assert.assertEquals("Hello", wsCon.readMessage().toString());
wsCon.close();