| org.apache.cactus.ServletTestCase org.apache.cactus.JspTestCase
All known Subclasses: org.apache.cactus.sample.servlet.TestSampleBodyTag, org.apache.cactus.sample.servlet.unit.TestJspTagLifecycle, org.apache.cactus.sample.servlet.unit.TestJspOut, org.apache.cactus.sample.servlet.TestSampleTag, org.apache.maven.cactus.sample.TestSampleBodyTag, org.apache.cactus.sample.servlet.unit.TestJspPageContext,
JspTestCase | public class JspTestCase extends ServletTestCase (Code) | | Test classes that need access to valid JSP implicit objects (such as the
page context, the output jsp writer, the HTTP request, ...) must subclass
this class.
version: $Id: JspTestCase.java 238991 2004-05-22 11:34:50Z vmassol $ |
Field Summary | |
public JspWriter | out Valid JspWriter object that you can access from
the testXXX() , setUp and
tearDown() methods. | public PageContextWrapper | pageContext Valid PageContext object that you can access from
the testXXX() , setUp and
tearDown() methods. |
out | public JspWriter out(Code) | | Valid JspWriter object that you can access from
the testXXX() , setUp and
tearDown() methods. If you try to access it from either the
beginXXX() or endXXX() methods it will
have the null value.
|
pageContext | public PageContextWrapper pageContext(Code) | | Valid PageContext object that you can access from
the testXXX() , setUp and
tearDown() methods. If you try to access it from either the
beginXXX() or endXXX() methods it will
have the null value.
|
|
|