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 examples;
11:
12: //import examples.functionFinder.test.*;
13: import junit.framework.*;
14:
15: /**
16: * Test suite for all tests of package examples
17: *
18: * @author Klaus Meffert
19: * @since 1.1
20: */
21: public class AllExampleTests extends TestSuite {
22: /** String containing the CVS revision. Read out via reflection!*/
23: private final static String CVS_REVISION = "$Revision: 1.3 $";
24:
25: public static junit.framework.Test suite() {
26: TestSuite suite = new TestSuite();
27: // suite.addTest(AllFormulaFinderTests.suite());
28: return suite;
29: }
30: }
|