1 /* 2 * Copyright 2002-2004 The Apache Software Foundation. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package test.message; 18 19 import junit.framework.Test; 20 import junit.framework.TestCase; 21 import junit.framework.TestSuite; 22 23 /** 24 * Test org.apache.axis.Message subsystem. 25 * 26 * @author Glyn Normington (glyn@apache.org) 27 */ 28 public class PackageTests extends TestCase 29 { 30 public PackageTests(String name) 31 { 32 super(name); 33 } 34 35 public static Test suite() throws Exception 36 { 37 TestSuite suite = new TestSuite(); 38 39 suite.addTestSuite(TestMessageElement.class); 40 suite.addTestSuite(TestSOAPEnvelope.class); 41 suite.addTestSuite(TestSOAPHeader.class); 42 suite.addTestSuite(TestSOAPBody.class); 43 suite.addTestSuite(TestJavaSerialization.class); 44 suite.addTestSuite(TestMessageSerialization.class); 45 suite.addTestSuite(TestSOAPFault.class); 46 suite.addTestSuite(TestMUValues.class); 47 suite.addTestSuite(TestText.class); 48 49 return suite; 50 } 51 } 52