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 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 22 extends TestSuite { 23 /** String containing the CVS revision. Read out via reflection!*/ 24 private final static String CVS_REVISION = "$Revision: 1.2 $"; 25 26 public static junit.framework.Test suite() { 27 TestSuite suite = new TestSuite(); 28 // suite.addTest(AllFormulaFinderTests.suite()); 29 return suite; 30 } 31 } 32