org.apache.cactus
public class: FilterTestCase [javadoc |
source]
java.lang.Object
junit.framework.TestCase
org.apache.cactus.internal.AbstractCactusTestCase
org.apache.cactus.FilterTestCase
All Implemented Interfaces:
CactusTestCase
Direct Known Subclasses:
TestSampleFilter, TestFilterHttpHeaders
Test classes that need access to valid Filter implicit objects (such as the
FilterConfig and
FilterChain objects) must
subclass this class.
- version:
$ - Id: FilterTestCase.java 292560 2005-09-29 21:48:10Z kenney $
| Field Summary |
|---|
| public AbstractHttpServletRequestWrapper | request | 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. |
| public HttpServletResponse | response | 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. |
| public FilterConfigWrapper | config | Valid FilterConfig 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. |
| public FilterChain | filterChain | Valid FilterChain 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. |