KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > meshcms > core > WebUtilsTest


1 package org.meshcms.core;
2
3 import junit.framework.*;
4 import org.meshcms.core.WebUtils;
5
6 public class WebUtilsTest extends TestCase {
7     WebUtils webUtils;
8
9     public void testConvertToHTMLEntities() throws Exception JavaDoc {
10         fail("Test is not implemented");
11     }
12
13     public void testGetWelcomeFiles() throws Exception JavaDoc {
14         fail("Test is not implemented");
15     }
16
17     public void testGetFullParameter() throws Exception JavaDoc {
18         fail("Test is not implemented");
19     }
20
21     public void testGetFullRequestURL() throws Exception JavaDoc {
22         fail("Test is not implemented");
23     }
24
25     public void testGetContextHomeURL() throws Exception JavaDoc {
26         fail("Test is not implemented");
27     }
28
29     public void testGetFullThemeFolder() throws Exception JavaDoc {
30         fail("Test is not implemented");
31     }
32
33     public void testGetFullThemeFile() throws Exception JavaDoc {
34         fail("Test is not implemented");
35     }
36
37     public void testGetFullThemeCSS() throws Exception JavaDoc {
38         fail("Test is not implemented");
39     }
40
41     public void testGetFullMeshCSS() throws Exception JavaDoc {
42         fail("Test is not implemented");
43     }
44
45     public void testGetMenuCode() throws Exception JavaDoc {
46         fail("Test is not implemented");
47     }
48
49     public void testGet2ndLevelDomain() throws Exception JavaDoc {
50         fail("Test is not implemented");
51     }
52
53     public void testFixFileName() throws Exception JavaDoc {
54         fail("Test is not implemented");
55     }
56
57     public void testFormatFileLength() throws Exception JavaDoc {
58         fail("Test is not implemented");
59     }
60
61     public void testGetCharsetCanonicalName() throws Exception JavaDoc {
62         fail("Test is not implemented");
63     }
64
65     public void testParseCharset() throws Exception JavaDoc {
66         fail("Test is not implemented");
67     }
68 }
Popular Tags