1 package servletunit.struts.tests.cactus; 2 3 import servletunit.struts.CactusStrutsTestCase; 4 5 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 } 29 | Popular Tags |