1 /* 2 * AllTests 3 * 4 * $RCSfile: AllTests.java,v $ 5 * $Revision: 1.1 $ 6 * $Date: 2004/01/01 17:42:19 $ 7 * $Source: /cvsroot/jpui/jpui/test/AllTests.java,v $ 8 * 9 * JPUI - Java Preferences User Interface 10 * Copyright (C) 2003 11 * 12 * This program is free software; you can redistribute it and/or modify it 13 * under the terms of the GNU General Public License as published by the Free 14 * Software Foundation; either version 2 of the License, or (at your option) 15 * any later version. 16 * 17 * This program is distributed in the hope that it will be useful, but WITHOUT 18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 20 * more details. 21 * 22 * You should have received a copy of the GNU General Public License along with 23 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple 24 * Place, Suite 330, Boston, MA 02111-1307 USA 25 * 26 * Author: macksold@users.sourceforge.net 27 */ 28 29 import junit.framework.Test; 30 import junit.framework.TestSuite; 31 32 /*** 33 * AllTests for JPUI 34 */ 35 public class AllTests 36 { 37 38 public static Test suite() 39 { 40 TestSuite suite = new TestSuite("Test for default package"); 41 42 suite.addTest(new TestSuite(PreferencesModelTest.class)); 43 return suite; 44 } 45 }

This page was automatically generated by Maven