assertSame(config.getServletContext(), context.getServletContext());
assertEquals("/test/action", context.getPath("/action"));
}
public void testModuleAttributes() throws ConfigException {
ServletConfig config = new TestServletConfig("test");
ControlModuleMapping mapping = new ControlModuleMapping("/test/*");
ControlModuleContext context = new ControlModuleContext(config, mapping, null);
assertNull(context.getAttribute("foo"));
context.setAttribute("foo", "bar");