private static final String SERIALIZATION = "RDF/XML-ABBREV";
private SimplePerson person;
@Before
public void before() {
this.person = new SimplePerson();
this.person.setName("Alice");
SimplePerson rel = new SimplePerson();
rel.setName("Bob");
this.person.setRel(rel);
}