protected Response run(Portlet portlet, ResourceRequest request, ResourceResponse response, PortletTestContext context) throws PortletException, IOException
{
//we dispatch to servlet and assertions will be done there
String queryString = "?key1=k1value1&key2=k2value1";
PortletRequestDispatcher dispatcher = ((AbstractUniversalTestPortlet)portlet).getPortletContext().getRequestDispatcher("/universalServletA" + queryString);
dispatcher.forward(request, response);
return null;
}
});
seq.bindAction(1, UTS1.SERVICE_JOIN_POINT, new ServletServiceTestAction()