@Test
public void testAddUpdateDeletePlaceSync() {
try {
JSONObject origJson = new JSONObject(TestEnvironment.getJsonPointStringNoId());
Feature feature = Feature.fromJSON(origJson);
String jsonString = client.addPlace(feature);
JSONObject json = new JSONObject(jsonString);
Assert.assertNotNull(json.get("id"));
String newPlaceHandle = json.getString("id");
feature = Feature.fromJSON(origJson);
feature.setSimpleGeoId(newPlaceHandle);
jsonString = client.updatePlace(feature);
Assert.assertNotNull(json.get("id"));
Assert.assertEquals(newPlaceHandle, json.getString("id"));