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