1 10 package org.jgap.gp; 11 12 import junit.framework.*; 13 import org.jgap.gp.impl.*; 14 15 21 public class AllGPTests 22 extends TestSuite { 23 24 25 private final static String CVS_REVISION = "$Revision: 1.14 $"; 26 27 public static Test suite() { 28 TestSuite suite = new TestSuite("AllGPTests"); 29 suite.addTest(CommandGeneTest.suite()); 30 suite.addTest(AllGPImplTests.suite()); 31 return suite; 32 } 33 } 34 | Popular Tags |