String workspaceName = graph.getCurrentWorkspaceName();
Location firstChildLocation = graph.getChildren().of("/").get(0);
Node firstChild = graph.getNodeAt(firstChildLocation);
// Don't use the graph so that we can obtain and interrogate the request ...
for (Property property : firstChild.getProperties()) {
CacheableRequest request = new ReadPropertyRequest(firstChildLocation, workspaceName, property.getName());
execute(request);
assertThat(request.getTimeLoaded(), is(notNullValue()));
}
}