public void testNoParse() throws Exception {
formatter.parse("afslk", null);
}
private void assertLatLon(String latLon, float lat, float lon) throws ParseException {
GeoLocation location = formatter.parse(latLon, null);
assertThat(location.getLatitude(), equalTo(lat));
assertThat(location.getLongitude(), equalTo(lon));
}