KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > audit > AllAuditTests


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

20 public class AllAuditTests
21     extends TestSuite {
22   /** String containing the CVS revision. Read out via reflection!*/
23   private final static String JavaDoc CVS_REVISION = "$Revision: 1.4 $";
24
25   public static Test suite() {
26     TestSuite suite = new TestSuite("AllAuditTests");
27     suite.addTest(EvaluatorTest.suite());
28     suite.addTest(KeyedValueTest.suite());
29     suite.addTest(KeyedValuesTest.suite());
30     suite.addTest(KeyedValues2DTest.suite());
31     suite.addTest(PermutingConfigurationTest.suite());
32     return suite;
33   }
34 }
35
Popular Tags