content_type("image/gif", "test.gif");
}
private void content_type(String contentType, String fileName) throws IOException
{
Request request = mockRequest();
HttpServletResponse hsr = mockHttpServletResponse();
train_setContentLength(hsr, anyInt());
train_setDateHeader(hsr, eq("Last-Modified"), anyLong());
train_setContentType(hsr, contentType);