KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > distr > AllDistrTests


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.distr;
11
12 import junit.framework.*;
13 import org.jgap.distr.grid.*;
14
15 /**
16  * Test suite for all tests of package org.jgap.distr.
17  *
18  * @author Klaus Meffert
19  * @since 1.0
20  */

21 public class AllDistrTests
22     extends TestSuite {
23   /** String containing the CVS revision. Read out via reflection!*/
24   private final static String JavaDoc CVS_REVISION = "$Revision: 1.8 $";
25
26   public static Test suite() {
27     TestSuite suite = new TestSuite("AllDistrTests");
28     suite.addTest(CultureTest.suite());
29     suite.addTest(CultureMemoryCellTest.suite());
30     suite.addTest(ProblemTest.suite());
31     suite.addTest(AllGridTests.suite());
32     return suite;
33   }
34 }
35
Popular Tags