01: /*
02: * This file is part of JGAP.
03: *
04: * JGAP offers a dual license model containing the LGPL as well as the MPL.
05: *
06: * For licensing information please see the file license.txt included with JGAP
07: * or have a look at the top of class org.jgap.Chromosome which representatively
08: * includes the JGAP license policy applicable for any file delivered with JGAP.
09: */
10: package org.jgap;
11:
12: import junit.framework.*;
13:
14: /**
15: * Test suite for all tests of package org.jgap.
16: *
17: * @author Klaus Meffert
18: * @since 1.1
19: */
20: public class AllBaseTests extends TestSuite {
21:
22: /** String containing the CVS revision. Read out via reflection!*/
23: private final static String CVS_REVISION = "$Revision: 1.12 $";
24:
25: public static Test suite() {
26: TestSuite suite = new TestSuite("AllBaseTests");
27: suite.addTest(BaseGeneTest.suite());
28: suite.addTest(BaseRateCalculatorTest.suite());
29: suite.addTest(ChromosomeTest.suite());
30: suite.addTest(ConfigurationTest.suite());
31: suite.addTest(DefaultFitnessEvaluatorTest.suite());
32: suite.addTest(DeltaFitnessEvaluatorTest.suite());
33: suite.addTest(FitnessFunctionTest.suite());
34: suite.addTest(GenotypeTest.suite());
35: suite.addTest(PopulationTest.suite());
36: return suite;
37: }
38: }
|