KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > supergenes > AllSupergenesTests


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.supergenes;
11
12 import junit.framework.*;
13
14 /**
15  * Test suite for supergene. The last step is rather slow, so it can run up
16  * to 4 seconds on 2.7 Mhz PC.
17  *
18  * @author Audrius Meskauskas
19  * @since 2.0
20  */

21 public class AllSupergenesTests
22     extends TestSuite {
23   /** String containing the CVS revision. Read out via reflection!*/
24   private final static String JavaDoc CVS_REVISION = "$Revision: 1.7 $";
25
26   public AllSupergenesTests(String JavaDoc a_name) {
27     super(a_name);
28   }
29
30   public static Test suite() {
31     TestSuite suite = new TestSuite("AllSupergenesTests");
32
33     suite.addTest(SupergeneInternalParserTest.suite());
34     suite.addTest(SupergenePersistentRepresentationTest.suite());
35 // suite.addTest(SupergeneSampleApplicationTest.suite());
36
return suite;
37   }
38 }
39
Popular Tags