1 18 package org.apache.struts.taglib.html; 19 20 import java.util.Locale ; 21 22 import javax.servlet.jsp.PageContext ; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 import org.apache.cactus.JspTestCase; 28 import org.apache.struts.Globals; 29 import org.apache.struts.taglib.SimpleBeanForTesting; 30 31 36 public class TestImgTag3 extends JspTestCase { 37 38 43 public TestImgTag3(String theName) { 44 super(theName); 45 } 46 47 52 public static void main(String [] theArgs) { 53 junit.awtui.TestRunner.main(new String [] {TestImgTag3.class.getName()}); 54 } 55 56 60 public static Test suite() { 61 return new TestSuite(TestImgTag3.class); 63 } 64 65 private void runMyTest(String whichTest, String locale) throws Exception { 66 pageContext.setAttribute(Globals.LOCALE_KEY, new Locale (locale, locale), PageContext.SESSION_SCOPE); 67 pageContext.setAttribute(Constants.BEAN_KEY, new SimpleBeanForTesting("Test Value"), PageContext.REQUEST_SCOPE); 68 request.setAttribute("runTest", whichTest); 69 pageContext.forward("/test/org/apache/struts/taglib/html/TestImgTag3.jsp"); 70 } 71 72 75 76 78 public void testImgPageKeyAlign1() throws Exception { 79 runMyTest("testImgPageKeyAlign1", ""); 80 } 81 82 public void testImgPageKeyAlign2() throws Exception { 83 runMyTest("testImgPageKeyAlign2", ""); 84 } 85 86 public void testImgPageKeyAlign3() throws Exception { 87 runMyTest("testImgPageKeyAlign3", ""); 88 } 89 90 public void testImgPageKeyAlign4() throws Exception { 91 runMyTest("testImgPageKeyAlign4", ""); 92 } 93 94 public void testImgPageKeyAlign5() throws Exception { 95 runMyTest("testImgPageKeyAlign5", ""); 96 } 97 98 public void testImgPageKeyAlign6() throws Exception { 99 runMyTest("testImgPageKeyAlign6", ""); 100 } 101 102 public void testImgPageKeyAlign7() throws Exception { 103 runMyTest("testImgPageKeyAlign7", ""); 104 } 105 106 public void testImgPageKeyAlign8() throws Exception { 107 runMyTest("testImgPageKeyAlign8", ""); 108 } 109 110 public void testImgPageKeyAlign9() throws Exception { 111 runMyTest("testImgPageKeyAlign9", ""); 112 } 113 114 public void testImgPageKeyAlign10() throws Exception { 115 runMyTest("testImgPageKeyAlign10", ""); 116 } 117 118 public void testImgPageKeyAlt() throws Exception { 119 runMyTest("testImgPageKeyAlt", ""); 120 } 121 122 public void testImgPageKeyAltKeyDefaultBundle() throws Exception { 123 runMyTest("testImgPageKeyAltKeyDefaultBundle", ""); 124 } 125 126 public void testImgPageKeyAltKeyAlternateBundle() throws Exception { 127 runMyTest("testImgPageKeyAltKeyAlternateBundle", ""); 128 } 129 130 public void testImgPageKeyAltKeyDefaultBundle_fr() throws Exception { 131 runMyTest("testImgPageKeyAltKeyDefaultBundle_fr", "fr"); 132 } 133 134 public void testImgPageKeyAltKeyAlternateBundle_fr() throws Exception { 135 runMyTest("testImgPageKeyAltKeyAlternateBundle_fr", "fr"); 136 } 137 138 public void testImgPageKeyBorder() throws Exception { 139 runMyTest("testImgPageKeyBorder", ""); 140 } 141 142 public void testImgPageKeyHeight1() throws Exception { 143 runMyTest("testImgPageKeyHeight1", ""); 144 } 145 146 public void testImgPageKeyHeight2() throws Exception { 147 runMyTest("testImgPageKeyHeight2", ""); 148 } 149 150 public void testImgPageKeyHspace() throws Exception { 151 runMyTest("testImgPageKeyHspace", ""); 152 } 153 154 public void testImgPageKeyImageName() throws Exception { 155 runMyTest("testImgPageKeyImageName", ""); 156 } 157 158 public void testImgPageKeyImageIsmap() throws Exception { 159 runMyTest("testImgPageKeyImageIsmap", ""); 160 } 161 162 public void testImgPageKeyLocale() throws Exception { 163 pageContext.setAttribute("secret locale", new Locale ("fr", "fr"), PageContext.SESSION_SCOPE); 164 runMyTest("testImgPageKeyLocale", ""); 165 } 166 167 } 168 | Popular Tags |