checkResponseBody(method, get);
assertEquals("Expected 200 with If-Modified-Since header. We should never get a 304 here", 200,
get.getStatusCode());
get = getSelectMethod(method);
get.addRequestHeader("If-Modified-Since", DateUtil.formatDate(new Date(System.currentTimeMillis()-10000)));
getClient().executeMethod(get);
checkResponseBody(method, get);
assertEquals("Expected 200 with If-Modified-Since header. We should never get a 304 here",
200, get.getStatusCode());