// test loading / unmarshalling request
File reproFile = loadFile("reprocess/reprocessStats.xml");
assertNotNull("Error finding file", reproFile);
ReprocessRequest req = RequestReader.load(reproFile);
assertNotNull("Error unmarshalling file", req);
assertTrue(req instanceof ReprocessStatsRequest);
ReprocessStatsRequest sreq = (ReprocessStatsRequest)req;
assertEquals(2, sreq.getStatsNames().size());