|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object junit.framework.Assert junit.framework.TestCase org.apache.shale.test.base.AbstractJsfTestCase
public abstract class AbstractJsfTestCase
Abstract JUnit test case base class, which sets up the JavaServer Faces
mock object environment for a particular simulated request. The following
protected variables are initialized in the setUp()
method, and
cleaned up in the tearDown()
method:
application
(MockApplication
)config
(MockServletConfig
)externalContext
(MockExternalContext
)facesContext
(MockFacesContext
)lifecycle
(MockLifecycle
)request
(MockHttpServletRequest
response
(MockHttpServletResponse
)servletContext
(MockServletContext
)session
(MockHttpSession
)In addition, appropriate factory classes will have been registered with
javax.faces.FactoryFinder
for Application
and
RenderKit
instances. The created FacesContext
instance will also have been registered in the apppriate thread local
variable, to simulate what a servlet container would do.
WARNING - If you choose to subclass this class, be sure
your setUp()
and tearDown()
methods call
super.setUp()
and super.tearDown()
respectively,
and that you implement your own suite()
method that exposes
the test methods for your test case.
Field Summary | |
---|---|
protected MockApplication |
application
|
protected MockServletConfig |
config
|
protected MockExternalContext |
externalContext
|
protected MockFacesContext |
facesContext
|
protected MockFacesContextFactory |
facesContextFactory
|
protected MockLifecycle |
lifecycle
|
protected MockLifecycleFactory |
lifecycleFactory
|
protected MockRenderKit |
renderKit
|
protected MockHttpServletRequest |
request
|
protected MockHttpServletResponse |
response
|
protected MockServletContext |
servletContext
|
protected MockHttpSession |
session
|
Constructor Summary | |
---|---|
AbstractJsfTestCase(String name)
Construct a new instance of this test case. |
Method Summary | |
---|---|
protected void |
setUp()
Set up instance variables required by this test case. |
protected void |
tearDown()
Tear down instance variables required by this test case. |
Methods inherited from class junit.framework.TestCase |
---|
countTestCases, createResult, getName, run, run, runBare, runTest, setName, toString |
Methods inherited from class junit.framework.Assert |
---|
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected MockApplication application
protected MockServletConfig config
protected MockExternalContext externalContext
protected MockFacesContext facesContext
protected MockFacesContextFactory facesContextFactory
protected MockLifecycle lifecycle
protected MockLifecycleFactory lifecycleFactory
protected MockRenderKit renderKit
protected MockHttpServletRequest request
protected MockHttpServletResponse response
protected MockServletContext servletContext
protected MockHttpSession session
Constructor Detail |
---|
public AbstractJsfTestCase(String name)
Construct a new instance of this test case.
name
- Name of this test caseMethod Detail |
---|
protected void setUp() throws Exception
Set up instance variables required by this test case.
setUp
in class junit.framework.TestCase
Exception
protected void tearDown() throws Exception
Tear down instance variables required by this test case.
tearDown
in class junit.framework.TestCase
Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |