1 18 package org.apache.struts.taglib.html; 19 20 import java.util.Locale ; 21 22 import javax.servlet.jsp.PageContext ; 23 import junit.framework.Test; 24 import junit.framework.TestSuite; 25 26 import org.apache.cactus.JspTestCase; 27 import org.apache.struts.Globals; 28 import org.apache.struts.taglib.SimpleBeanForTesting; 29 30 35 public class TestRadioTag1 extends JspTestCase { 36 37 42 public TestRadioTag1(String theName) { 43 super(theName); 44 } 45 46 51 public static void main(String [] theArgs) { 52 junit.awtui.TestRunner.main(new String [] {TestRadioTag1.class.getName()}); 53 } 54 55 59 public static Test suite() { 60 return new TestSuite(TestRadioTag1.class); 62 } 63 64 private void runMyTest(String whichTest, String locale) throws Exception { 65 pageContext.setAttribute(Globals.LOCALE_KEY, new Locale (locale, locale), PageContext.SESSION_SCOPE); 66 pageContext.setAttribute(Constants.BEAN_KEY, new SimpleBeanForTesting("Test Value"), PageContext.REQUEST_SCOPE); 67 request.setAttribute("runTest", whichTest); 68 pageContext.forward("/test/org/apache/struts/taglib/html/TestRadioTag1.jsp"); 69 } 70 71 74 public void testRadioProperty() throws Exception { 75 runMyTest("testRadioProperty", ""); 76 } 77 public void testRadioPropertyAccesskey() throws Exception { 78 runMyTest("testRadioPropertyAccesskey", ""); 79 } 80 public void testRadioPropertyAlt() throws Exception { 81 runMyTest("testRadioPropertyAlt", ""); 82 } 83 public void testRadioPropertyAltKey1() throws Exception { 84 runMyTest("testRadioPropertyAltKey1", ""); 85 } 86 public void testRadioPropertyAltKey2() throws Exception { 87 runMyTest("testRadioPropertyAltKey2", ""); 88 } 89 public void testRadioPropertyAltKey3() throws Exception { 90 runMyTest("testRadioPropertyAltKey3", ""); 91 } 92 public void testRadioPropertyAltKey_fr1() throws Exception { 93 runMyTest("testRadioPropertyAltKey1_fr", "fr"); 94 } 95 public void testRadioPropertyAltKey_fr2() throws Exception { 96 runMyTest("testRadioPropertyAltKey2_fr", "fr"); 97 } 98 public void testRadioPropertyDisabled() throws Exception { 99 runMyTest("testRadioPropertyDisabled", ""); 100 } 101 public void testRadioPropertyOnblur() throws Exception { 102 runMyTest("testRadioPropertyOnblur", ""); 103 } 104 public void testRadioPropertyOnchange() throws Exception { 105 runMyTest("testRadioPropertyOnchange", ""); 106 } 107 public void testRadioPropertyOnclick() throws Exception { 108 runMyTest("testRadioPropertyOnclick", ""); 109 } 110 public void testRadioPropertyOndblclick() throws Exception { 111 runMyTest("testRadioPropertyOndblclick", ""); 112 } 113 public void testRadioPropertyOnfocus() throws Exception { 114 runMyTest("testRadioPropertyOnfocus", ""); 115 } 116 public void testRadioPropertyOnkeydown() throws Exception { 117 runMyTest("testRadioPropertyOnkeydown", ""); 118 } 119 public void testRadioPropertyOnkeypress() throws Exception { 120 runMyTest("testRadioPropertyOnkeypress", ""); 121 } 122 public void testRadioPropertyOnkeyup() throws Exception { 123 runMyTest("testRadioPropertyOnkeyup", ""); 124 } 125 public void testRadioPropertyOnmousedown() throws Exception { 126 runMyTest("testRadioPropertyOnmousedown", ""); 127 } 128 public void testRadioPropertyOnmousemove() throws Exception { 129 runMyTest("testRadioPropertyOnmousemove", ""); 130 } 131 public void testRadioPropertyOnmouseout() throws Exception { 132 runMyTest("testRadioPropertyOnmouseout", ""); 133 } 134 public void testRadioPropertyOnmouseover() throws Exception { 135 runMyTest("testRadioPropertyOnmouseover", ""); 136 } 137 public void testRadioPropertyOnmouseup() throws Exception { 138 runMyTest("testRadioPropertyOnmouseup", ""); 139 } 140 141 } 142 | Popular Tags |