protected void setUp() throws ServletException, ConfigException {
pageContext = new TestPageContext();
// configure module container
ServletContext context = pageContext.getServletContext();
TestModuleGroup group = TestModuleGroup.getInstance(context);
// configure test module
module = new TestModuleContext("test", pageContext.getServletContext());
group.add(module);
group.setTestModuleContext((HttpServletRequest)pageContext.getRequest(), module);
// install panels support
PanelsService service = new PanelsService();
String xml = "/" + getClass().getName().replace('.', '/') + ".xml";
service.init(module, xml);
support = PanelsSupport.getInstance(module);