KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > generators > AllTests


1 /*
2  * Created on Mar 30, 2006
3  */

4 package com.openedit.generators;
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 com.openedit.generators");
15         //$JUnit-BEGIN$
16
suite.addTestSuite(WikiTest.class);
17         suite.addTestSuite(EditingTest.class);
18         //$JUnit-END$
19
return suite;
20     }
21
22 }
23
Popular Tags