@Before
public void setUp() throws Exception {
xmlRecordMapper = new XmlRecordMapper<Person>(Person.class);
String xml = new Scanner(this.getClass().getResourceAsStream("/person.xml") ).useDelimiter("\\A").next();
xmlRecord = new XmlRecord(1, xml);
}