* Test check GET on the "changes" resource in "application/xml" format.
*/
@Test
public void testGetOnLatestChangeXMLFormat() {
WebResource webResouce = resource();
ChangeRecordBean lastChange = webResouce.path("changes/latest").
accept("application/xml").get(ChangeRecordBean.class);
assertEquals(1, lastChange.linesChanged);
}