TestResponse response = new TestResponse();
module1.process(request, response, "/index");
assertEquals("/module1/index.jsp", request.getRecentRequestDispatchPath());
module2.process(request, response, "/index");
assertEquals("/module2/index.jsp", request.getRecentRequestDispatchPath());
module1.process(request, response, "/module2");
assertEquals("/module2/index", request.getRecentRequestDispatchPath());