01: package servletunit.struts.tests.cactus;
02:
03: import servletunit.struts.CactusStrutsTestCase;
04:
05: /**
06: * Created by IntelliJ IDEA.
07: * User: deryl
08: * Date: Apr 13, 2003
09: * Time: 12:07:32 PM
10: * To change this template use Options | File Templates.
11: */
12: public class TestNullAction extends CactusStrutsTestCase {
13:
14: public TestNullAction(String testName) {
15: super (testName);
16: }
17:
18: public void setUp() throws Exception {
19: super .setUp();
20: }
21:
22: public void testNullAction() {
23: setRequestPathInfo("test", "/testNullAction.do");
24: actionPerform();
25: verifyForward(null);
26: verifyForwardPath(null);
27: }
28: }
|