private void testEntityUpdated() throws IOException, JSONException {
String id = "http://stanbol.apache.org";
RequestExecutor re = executor.execute(
builder.buildGetRequest("/entityhub/entity","id",id)
.withHeader("Accept", "application/json"));
re.assertStatus(200);
JSONObject jEntity = assertEntity(re.getContent(), id, "entityhub");
Map<String,Set<List<String>>> data = assertRepresentation(jEntity.getJSONObject("representation"),
EXPECTED_DOAP_FIELDS, null);
Set<List<String>> pmcValues = data.get("http://projects.apache.org/ns/asfext#pmc");