@Test
public void testInit() throws ServletException {
StaticServlet staticServlet = new StaticServlet();
RequestChain servlet = new ServletContainer("/foo/*",staticServlet);
StagingServletContext context = new StagingServletContext(){
public String getMimeType(String file){
return null;
}