}
@Test
public void itThrowsA404() throws Exception {
try {
resource.show(context.getUser(), Locale.CHINA, new IntervalTypeParam("weekly"), new CurrencyParam("USD"), new ISODateParam("20090801"), new ISODateParam("20090501"), new BooleanParam("false"), null, null, null, null, null);
} catch (WebApplicationException e) {
assertThat(e.getResponse().getStatus(), is(404));
}
}