1 10 package org.jgap.data.config; 11 12 import junit.framework.*; 13 14 20 public class AllConfigTests 21 extends TestSuite { 22 23 24 private final static String CVS_REVISION = "$Revision: 1.2 $"; 25 26 public static Test suite() { 27 TestSuite suite = new TestSuite(); 28 suite.addTest(ConfigPropertyTest.suite()); 29 suite.addTest(MetaConfigTest.suite()); 30 suite.addTest(RootConfigurationHandlerTest.suite()); 31 return suite; 32 } 33 } 34 | Popular Tags |