1 /* 2 * Copyright(C) 2002 Mika Riekkinen, Joni Suominen 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or(at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 19 package alt.jiapi; 20 21 import junit.framework.Test; 22 import junit.framework.TestSuite; 23 24 import alt.jiapi.file.ConstantPoolTest; 25 import alt.jiapi.reflect.InstructionListTest; 26 import alt.jiapi.reflect.ReflectionTest; 27 import alt.jiapi.reflect.SignatureTest; 28 import alt.jiapi.reflect.InstructionTest; 29 30 /** 31 * A JUnit test suite for Jiapi. 32 * 33 * @author Mika Riekkinen 34 * @author Joni Suominen 35 * @version $Revision: 1.4 $ $Date: 2004/03/29 13:36:32 $ 36 */ 37 public class AllTests extends TestSuite { 38 public static Test suite() { 39 TestSuite suite = new TestSuite(); 40 41 suite.addTestSuite(ConstantPoolTest.class); 42 suite.addTestSuite(InstructionListTest.class); 43 suite.addTestSuite(SignatureTest.class); 44 suite.addTestSuite(alt.jiapi.reflect.ReflectionTest.class); 45 suite.addTestSuite(RuleTest.class); 46 suite.addTestSuite(InstrumentationDescriptorTest.class); 47 suite.addTestSuite(InstructionTest.class); 48 // suite.addTestSuite(InstrumentorTest.class); 49 50 51 return suite; 52 } 53 } 54