dwinterfeldt    01/07/10 18:59:10

  Added:       web/test/test redirector.jsp
  Log:
  Component of Cactus for JSP Unit Testing.  Modified from distribution to set session 
to true.
  
  Revision  Changes    Path
  1.1                  jakarta-struts/web/test/test/redirector.jsp
  
  Index: redirector.jsp
  ===================================================================
  <%@page import="org.apache.commons.cactus.server.*" session="true" %><%
  
      /**                                                
       *                                                 
       * Note:                                           
       * It is very important not to put any character between the end
       * of the page tag and the beginning of the java code expression, otherwise,
       * the generated servlet containss a 'out.println("\r\n");' and this breaks
       * our mechanism !
       */
  
      /**
       * This JSP is used as a proxy to call your server-side unit tests. We use
       * a JSP rather than a servlet because for testing custom JSP tags for
       * example we need access to JSP implicit objects (PageContext and
       * JspWriter).
       */
  
      JspTestCaller caller = new JspTestCaller();
  
      JspImplicitObjects objects = new JspImplicitObjects();
      objects.m_Config = config;
      objects.m_Request = request;
      objects.m_Response = response;
      objects.m_PageContext = pageContext;
      objects.m_JspWriter = out;
  
      caller.doTest(objects);
  
  %>
  
  

Reply via email to