KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > AllBaseTests


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 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
21     extends TestSuite {
22
23   /** String containing the CVS revision. Read out via reflection!*/
24   private final static String JavaDoc CVS_REVISION = "$Revision: 1.11 $";
25
26   public static Test suite() {
27     TestSuite suite = new TestSuite("AllBaseTests");
28     suite.addTest(BaseGeneTest.suite());
29     suite.addTest(BaseRateCalculatorTest.suite());
30     suite.addTest(ChromosomeTest.suite());
31     suite.addTest(ConfigurationTest.suite());
32     suite.addTest(DefaultFitnessEvaluatorTest.suite());
33     suite.addTest(DeltaFitnessEvaluatorTest.suite());
34     suite.addTest(FitnessFunctionTest.suite());
35     suite.addTest(GenotypeTest.suite());
36     suite.addTest(PopulationTest.suite());
37     return suite;
38   }
39 }
40
Popular Tags