@Test
public void testGetHistorySync() {
try {
String jsonString = client.getHistory("casey.testing.layer", "simplegeo-boulder", null);
GeometryCollection geoColl = GeometryCollection.fromJSONString(jsonString);
Assert.assertNotNull(geoColl.getGeometries());
} catch (IOException e) {
Assert.fail(e.getMessage());
} catch (JSONException e) {
Assert.fail(e.getMessage());
}