1 18 package org.apache.struts.taglib.bean; 19 20 import junit.framework.Test; 21 import junit.framework.TestSuite; 22 import org.apache.struts.taglib.TaglibTestBase; 23 24 29 public class TestIncludeTag extends TaglibTestBase { 30 31 36 public TestIncludeTag(String theName) { 37 super(theName); 38 } 39 40 45 public static void main(String [] theArgs) { 46 junit.awtui.TestRunner.main(new String [] {TestIncludeTag.class.getName()}); 47 } 48 49 53 public static Test suite() { 54 return new TestSuite(TestIncludeTag.class); 56 } 57 58 private void runMyTest(String whichTest) throws Exception { 59 request.setAttribute("runTest", whichTest); 60 pageContext.forward( 61 request.getRequestURI() + "/org/apache/struts/taglib/bean/TestIncludeTag.jsp"); 62 } 63 64 67 public void testIncludeTagForward() throws Exception { 68 } 75 76 79 public void testIncludeTagHref() throws Exception { 80 } 83 84 87 public void testIncludeTagPage() throws Exception { 88 } 91 92 93 } 94 | Popular Tags |