public void testCreateWithNull() throws YardException {
Yard yard = getYard();
Representation test = yard.create(null);
assertNotNull("Parsing NULL to create(String) MUST create a valid Representation", test);
representationIds.add(test.getId()); // add id to cleanup list
Representation test2 = yard.create(null);
assertNotNull("Parsing NULL to create(String) MUST create a valid Representation", test2);
representationIds.add(test2.getId()); // add id to cleanup list
assertNotSame(test, test2);
assertFalse("Two Representation created with create(null) MUST NOT be equals", test.equals(test2));
}