private static void validateTestIndex() throws Exception {
log.info("check availability of {} entities", REQUIRED_ENTITIES.size());
for(String context : REQUIRED_ENTITIES){
log.debug(" > check Entity {}",context);
Representation rep = yard.getRepresentation(context);
assertNotNull(rep);
assertEquals(rep.getId(),context);
if(log.isDebugEnabled()){
log.debug("Data for Entity {}: \n {}",rep.getId(),
ModelUtils.getRepresentationInfo(rep));
}
}
log.info(" ... all Entities present");
}