public void testGetResponseFromServer() throws Exception {
final String RESPONSE = "test1\r\ntest2";
server.content = RESPONSE.getBytes(server.encoding);
final String responsedContent = CommonUtils.getResponseFromServer(new URL("http://localhost:8090"), new HttpsURLConnectionFactory(), null);
assertEquals(RESPONSE, responsedContent);
}