1 22 package org.jboss.test; 23 24 import org.jboss.test.system.SystemTestSuite; 25 26 import junit.framework.Test; 27 import junit.framework.TestSuite; 28 import junit.textui.TestRunner; 29 30 36 public class SystemAllTestSuite extends TestSuite 37 { 38 public static void main(String [] args) 39 { 40 TestRunner.run(suite()); 41 } 42 43 public static Test suite() 44 { 45 TestSuite suite = new TestSuite("All Tests"); 46 47 suite.addTest(SystemTestSuite.suite()); 48 49 return suite; 50 } 51 } 52 | Popular Tags |