KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > modules > changelog > AllTests


1 /*
2  * Created on Sep 23, 2004
3  */

4 package com.openedit.modules.changelog;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 /**
10  * @author cburkey
11  *
12  */

13 public class AllTests
14 {
15
16     public static Test suite()
17     {
18         TestSuite suite = new TestSuite("Test for com.openedit.modules.changelog");
19         //$JUnit-BEGIN$
20
suite.addTestSuite(ChangeLogTest.class);
21         //$JUnit-END$
22
return suite;
23     }
24 }
25
Popular Tags