1 22 package test.performance.timer; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 32 public class TimerSUITE 33 extends TestSuite 34 { 35 40 public static void main(String [] args) 41 { 42 junit.textui.TestRunner.run(suite()); 43 } 44 45 50 public static Test suite() 51 { 52 TestSuite suite = new TestSuite("Timer Performance tests"); 53 54 suite.addTest(new TestSuite(TimerTortureTestCase.class)); 55 56 return suite; 57 } 58 } 59 | Popular Tags |