@Test
public void testDeserialize() throws Exception {
String json = getJsonString();
GoogleJsonDeserializer googleJsonDeserializer = new GoogleJsonDeserializer();
GoogleGeocoderResults geocoderResults = googleJsonDeserializer.parseResults(json);
List<GoogleGeocoderResult> results = geocoderResults.getResults();
assertEquals("unexpected number of results", 1, results.size());
GoogleGeocoderResult googleGeocoderResult = results.get(0);