KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > meshcms > util > UtilsTest


1 package org.meshcms.util;
2 import junit.framework.*;
3 import org.meshcms.util.Utils;
4
5 public class UtilsTest extends TestCase {
6     Utils utils;
7
8     public void testAddDigits() throws Exception JavaDoc {
9         fail("Test is not implemented");
10     }
11
12     public void testGenerateUniqueName() throws Exception JavaDoc {
13         fail("Test is not implemented");
14     }
15
16     public void testEncodeHTML() throws Exception JavaDoc {
17         fail("Test is not implemented");
18     }
19
20     public void testDecodeHTML() throws Exception JavaDoc {
21         fail("Test is not implemented");
22     }
23
24     public void testStripHTMLTags() throws Exception JavaDoc {
25         fail("Test is not implemented");
26     }
27
28     public void testUnzip() throws Exception JavaDoc {
29         fail("Test is not implemented");
30     }
31
32     public void testGenerateRandomString() throws Exception JavaDoc {
33         fail("Test is not implemented");
34     }
35
36     public void testSum() throws Exception JavaDoc {
37         fail("Test is not implemented");
38     }
39
40     public void testGenerateUniqueDosName() throws Exception JavaDoc {
41         fail("Test is not implemented");
42     }
43
44     public void testSearchString() throws Exception JavaDoc {
45         fail("Test is not implemented");
46     }
47
48     public void testCheckAddress() throws Exception JavaDoc {
49         fail("Test is not implemented");
50     }
51
52     public void testGetExtension() throws Exception JavaDoc {
53         fail("Test is not implemented");
54     }
55
56     public void testRemoveExtension() throws Exception JavaDoc {
57         fail("Test is not implemented");
58     }
59
60     public void testGetCommonPart() throws Exception JavaDoc {
61         fail("Test is not implemented");
62     }
63
64     public void testBeautify() throws Exception JavaDoc {
65         fail("Test is not implemented");
66     }
67
68     public void testUglify() throws Exception JavaDoc {
69         fail("Test is not implemented");
70     }
71
72     public void testFormatFileLength() throws Exception JavaDoc {
73         fail("Test is not implemented");
74     }
75
76     public void testEncodeURL() throws Exception JavaDoc {
77         fail("Test is not implemented");
78     }
79
80     public void testDecodeURL() throws Exception JavaDoc {
81         fail("Test is not implemented");
82     }
83
84     public void testGetLocale() throws Exception JavaDoc {
85         fail("Test is not implemented");
86     }
87
88     public void testGetLanguageLocales() throws Exception JavaDoc {
89         fail("Test is not implemented");
90     }
91 }
Popular Tags