KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > junitdoclet > JunitdocletSuite


1 package org.junitdoclet;
2
3 import junit.framework.TestSuite;
4
5
6 // JUnitDoclet begin import
7
// JUnitDoclet end import
8

9 /**
10 * Generated by JUnitDoclet, a tool provided by
11 * ObjectFab GmbH under LGPL.
12 * Please see www.junitdoclet.org, www.gnu.org
13 * and www.objectfab.de for informations about
14 * the tool, the licence and the authors.
15 */

16
17
18 public class JunitdocletSuite
19 // JUnitDoclet begin extends_implements
20
// JUnitDoclet end extends_implements
21
{
22   // JUnitDoclet begin class
23
// JUnitDoclet end class
24

25   public static TestSuite suite() {
26     
27     TestSuite suite;
28     
29     suite = new TestSuite("org.junitdoclet");
30     
31     suite.addTestSuite(org.junitdoclet.PackageListerTest.class);
32     
33     
34     
35     // JUnitDoclet begin method suite
36
// JUnitDoclet end method suite
37

38     return suite;
39   }
40   
41   public static void main(String JavaDoc[] args) {
42     // JUnitDoclet begin method testsuite.main
43
junit.textui.TestRunner.run(suite());
44     // JUnitDoclet end method testsuite.main
45
}
46 }
47
Popular Tags