1 22 package test.stress; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 32 33 public class StressSUITE extends TestSuite 34 { 35 36 public static void main(String [] args) 37 { 38 junit.textui.TestRunner.run(suite()); 39 } 40 41 public static Test suite() 42 { 43 TestSuite suite = new TestSuite("All Stress Tests"); 44 45 suite.addTest(test.stress.timer.TimerSUITE.suite()); 46 47 return suite; 48 } 49 } 50 | Popular Tags |