KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.meshcms.util;
2
3 import junit.framework.*;
4 import org.meshcms.util.Path;
5
6 public class PathTest extends TestCase {
7     Path path;
8
9     public void testPath() throws Exception JavaDoc {
10         fail("Test is not implemented");
11     }
12
13     public void testGetPartial() throws Exception JavaDoc {
14         fail("Test is not implemented");
15     }
16
17     public void testIsChildOf() throws Exception JavaDoc {
18         fail("Test is not implemented");
19     }
20
21     public void testIsContainedIn() throws Exception JavaDoc {
22         fail("Test is not implemented");
23     }
24
25     public void testGetRelativeTo() throws Exception JavaDoc {
26         fail("Test is not implemented");
27     }
28
29     public void testCompareTo() throws Exception JavaDoc {
30         fail("Test is not implemented");
31     }
32
33     public void testCommonPart() throws Exception JavaDoc {
34         fail("Test is not implemented");
35     }
36 }
Popular Tags