KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > AllTests


1 /*
2  * This file is part of JGAP.
3  *
4  * JGAP offers a dual license model containing the LGPL as well as the MPL.
5  *
6  * For licencing information please see the file license.txt included with JGAP
7  * or have a look at the top of class org.jgap.Chromosome which representatively
8  * includes the JGAP license policy applicable for any file delivered with JGAP.
9  */

10 package org.jgap;
11
12 import org.jgap.audit.*;
13 import org.jgap.data.*;
14 import org.jgap.distr.*;
15 import org.jgap.eval.*;
16 import org.jgap.event.*;
17 import org.jgap.ext.*;
18 import org.jgap.gp.*;
19 import org.jgap.gui.*;
20 import org.jgap.impl.*;
21 import org.jgap.supergenes.*;
22 import org.jgap.util.*;
23 import org.jgap.xml.*;
24
25 import junit.framework.*;
26
27 /**
28  * Test suite for all test cases.<p>
29  * Start this class to execute all Tests.<p>
30  * Required are junit.jar and junit-addons_1.4.jar<p>
31  * In here, only test suites will be referenced (see method suite()).<p>
32  * Don't add any test cases to this class!
33  *
34  * @author Klaus Meffert
35  * @since 1.1
36  */

37 public class AllTests
38     extends TestSuite {
39   /** String containing the CVS revision. Read out via reflection!*/
40   private final static String JavaDoc CVS_REVISION = "$Revision: 1.15 $";
41
42   public static Test suite() {
43     TestSuite suite = new TestSuite("AllTests");
44     suite.addTest(AllAuditTests.suite());
45     suite.addTest(AllBaseTests.suite());
46     suite.addTest(AllDataTests.suite());
47     suite.addTest(AllDistrTests.suite());
48     suite.addTest(AllEvalTests.suite());
49     suite.addTest(AllEventTests.suite());
50     suite.addTest(AllExtTests.suite());
51     suite.addTest(AllGPTests.suite());
52     suite.addTest(AllGUITests.suite());
53     suite.addTest(AllImplTests.suite());
54     suite.addTest(AllSupergenesTests.suite());
55     suite.addTest(AllUtilTests.suite());
56     suite.addTest(AllXMLTests.suite());
57     return suite;
58   }
59 }
60
Popular Tags