1 17 package servletunit.struts.tests.cactus; 18 19 import servletunit.struts.CactusStrutsTestCase; 20 21 public class TestContextRelative extends CactusStrutsTestCase { 22 23 public TestContextRelative(String testName) { 24 super(testName); 25 } 26 27 public void testContextRelativeForward() { 28 setRequestPathInfo("test","/testContextRelative"); 29 actionPerform(); 30 verifyForward("redirect"); 31 verifyNoActionErrors(); 32 } 33 34 } 35 | Popular Tags |