1 package servletunit.struts.tests; 2 3 import servletunit.struts.MockStrutsTestCase; 4 5 12 public class TestNullAction extends MockStrutsTestCase { 13 14 public TestNullAction(String testName) { 15 super(testName); 16 } 17 18 public void setUp() throws Exception { 19 super.setUp(); 20 setServletConfigFile("/WEB-INF/web.xml"); 21 } 22 23 public void testNullAction() { 24 setRequestPathInfo("test","/testNullAction.do"); 25 actionPerform(); 26 verifyForward(null); 27 verifyForwardPath(null); 28 } 29 } 30 | Popular Tags |