KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.meshcms.core;
2
3 import junit.framework.*;
4 import org.meshcms.core.WebSite;
5
6 public class WebSiteTest extends TestCase {
7     WebSite webSite;
8
9     public void testGetStatsIndex() throws Exception JavaDoc {
10         fail("Test is not implemented");
11     }
12
13     public void testCreateDirectory() throws Exception JavaDoc {
14         fail("Test is not implemented");
15     }
16
17     public void testCreateFile() throws Exception JavaDoc {
18         fail("Test is not implemented");
19     }
20
21     public void testSaveToFile() throws Exception JavaDoc {
22         fail("Test is not implemented");
23     }
24
25     public void testGetLinkList() throws Exception JavaDoc {
26         fail("Test is not implemented");
27     }
28
29     public void testIsSystem() throws Exception JavaDoc {
30         fail("Test is not implemented");
31     }
32
33     public void testGetModulePath() throws Exception JavaDoc {
34         fail("Test is not implemented");
35     }
36
37     public void testGetHTMLTemplate() throws Exception JavaDoc {
38         fail("Test is not implemented");
39     }
40
41     public void testFindCurrentWelcome() throws Exception JavaDoc {
42         fail("Test is not implemented");
43     }
44
45     public void testLoadFromXML() throws Exception JavaDoc {
46         fail("Test is not implemented");
47     }
48
49     public void testStoreToXML() throws Exception JavaDoc {
50         fail("Test is not implemented");
51     }
52 }
Popular Tags