@Test
public void contentAsJson() throws ClientProtocolException, IOException {
client = new HttpClientService();
HttpGet request = new HttpGet("http://ws.luomus.fi/util/coordinate-conversion-service?lat=6663841&lon=333229&type=trs-tm35fin&format=json");
JSONObject json = client.contentAsJson(request);
Assert.assertEquals(1, json.getKeys().length);
Assert.assertEquals("conversion-response", json.getKeys()[0]);
}