// present within the yard
String testId = "urn:yard.test.testStoreRepresentation:representation.id1";
String testId2 = "urn:yard.test.testStoreRepresentation:representation.id2";
Yard yard = getYard();
Representation test = create(testId, false);
Representation added = yard.store(test); // this adds the representation
assertEquals(test, added);
Representation test2 = create(testId2, true); // this creates and adds the representation
// now test that the representation can also be updated
added = yard.store(test2);
assertEquals(test2, added);