yards = Arrays.asList(yard1,yard2,unionYard);
//add the test data (to the Repository to also test pre-existing data)
RepositoryConnection con = repo.getConnection();
con.begin();
URI entity1 = sesameFactory.createURI("http://www.test.org/entity1");
con.add(entity1,rdfType,skosConcept,CONTEXT1);
con.add(entity1,skosPrefLabel,sesameFactory.createLiteral("test context one", EN),CONTEXT1);
con.add(entity1,skosPrefLabel,sesameFactory.createLiteral("Test Context Eins", DE),CONTEXT1);
expectedEntities.put(entity1, Arrays.asList(yard1,unionYard));