| org.apache.cactus.internal.AbstractCactusTestCase org.apache.cactus.ServletTestCase
All known Subclasses: org.apache.cactus.integration.maven.test.Super2Test, org.apache.cactus.integration.maven.test.TestResources, org.apache.cactus.sample.servlet.unit.TestTearDownException, org.apache.cactus.sample.servlet.unit.TestSetURLSpecific, org.apache.cactus.sample.servlet.unit.TestHttpResponse, org.apache.cactus.sample.servlet.unit.TestServletRedirectorOverride, org.apache.cactus.integration.maven.test.Super3Test, org.apache.cactus.sample.servlet.unit.TestHttpHeaders, org.apache.cactus.sample.servlet.unit.TestHttpUnitIntegration, org.apache.cactus.sample.servlet.unit.TestCookie, org.apache.cactus.sample.servlet.unit.TestServletContext, org.apache.maven.cactus.sample.TestSampleServlet, org.apache.cactus.sample.servlet.TestSampleServletConfig, org.apache.cactus.sample.servlet.unit.TestBasicAuthentication, org.apache.cactus.sample.servlet.unit.TestHttpParameters, org.apache.cactus.test.TestProperties, org.apache.cactus.sample.servlet.unit.TestHttpRequestSpecific, org.apache.cactus.sample.servlet.unit.TestClientServerSynchronization, org.apache.cactus.sample.servlet.unit.TestServletConfig, org.apache.cactus.sample.servlet.TestSampleServlet, org.apache.cactus.sample.servlet.unit.TestGlobalBeginEnd, org.apache.cactus.JspTestCase, org.apache.maven.cactus.sample.TestHttpUnitIntegration, org.apache.cactus.sample.servlet.unit.TestHttpSession, org.apache.cactus.sample.servlet.unit.TestHttpRequest, org.apache.cactus.sample.servlet.unit.TestServerSideExceptions, org.apache.cactus.sample.ejb.TestConverterEJB, org.apache.cactus.sample.servlet.unit.TestSetUpTearDown, org.apache.cactus.sample.servlet.unit.TestSetURL, org.apache.cactus.sample.servlet.unit.TestRequestDispatcher,
ServletTestCase | public class ServletTestCase extends AbstractCactusTestCase implements CactusTestCase(Code) | | Cactus test case to unit test Servlets. Test classes that need access to
valid Servlet implicit objects (such as the HTTP request, the HTTP response,
the servlet config, ...) must subclass this class.
version: $Id: ServletTestCase.java 238991 2004-05-22 11:34:50Z vmassol $ |
config | public ServletConfigWrapper config(Code) | | Valid ServletConfig 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.
|
request | public org.apache.cactus.server.HttpServletRequestWrapper request(Code) | | Valid HttpServletRequest 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.
|
response | public HttpServletResponse response(Code) | | Valid HttpServletResponse 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.
|
session | public HttpSession session(Code) | | Valid HttpSession 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.
|
|
|