seq.bindAction(0, UTS1.SERVICE_JOIN_POINT, new ServletServiceTestAction()
{
public Response execute(Servlet servlet, HttpServletRequest request, HttpServletResponse response, PortletTestContext context) throws ServletException, IOException
{
AbstractUniversalTestServlet serv = ((AbstractUniversalTestServlet)servlet);
URL portletUrl = (URL)serv.getServletContext().getAttribute("resource");
URL url = serv.getServletContext().getResource("/simple_resource.txt");
byte[] portletByteArray = (byte[])serv.getServletContext().getAttribute("content");
InputStream is = serv.getServletContext().getResourceAsStream("/simple_resource.txt");
byte[] byteArray = new byte[is.available()];
is.read(byteArray);
if (portletUrl.equals(url) &&
Arrays.equals(portletByteArray, byteArray))