1 package test.client; 2 3 import junit.framework.Test; 4 import junit.framework.TestSuite; 5 6 8 public class PackageTests 9 { 10 public static void main (String [] args) { 11 junit.textui.TestRunner.run (suite()); 12 } 13 14 public static Test suite() 15 { 16 TestSuite suite = new TestSuite("All Axis Call tests"); 17 18 suite.addTest(TestCall.suite()); 19 suite.addTest(TestAsyncCall.suite()); 20 return suite; 21 } 22 } 23 | Popular Tags |