KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openedit > links > AllTests


1 /*
2  * Created on Oct 7, 2005
3  */

4 package org.openedit.links;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 public class AllTests
10 {
11
12     public static Test suite()
13     {
14         TestSuite suite = new TestSuite("Test for org.openedit.links");
15         //$JUnit-BEGIN$
16
suite.addTestSuite(LinkTest.class);
17         //$JUnit-END$
18
return suite;
19     }
20
21 }
22
Popular Tags