KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ashkelon > util > AllTests


1 /*
2  * Created on Aug 2, 2004
3  */

4 package org.ashkelon.util;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 /**
10  * @author Eitan Suez
11  */

12 public class AllTests
13 {
14    public static Test suite()
15    {
16       TestSuite suite = new TestSuite("Test for org.ashkelon.util");
17       //$JUnit-BEGIN$
18
suite.addTestSuite(TestJDocUtil.class);
19       //$JUnit-END$
20
return suite;
21    }
22 }
23
Popular Tags