1 22 package test.stress.timer; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 32 public class TimerSUITE 33 extends TestSuite 34 { 35 38 public static int TIMERS = 200; 39 40 43 public static int OFFSET = 100; 44 45 48 public static int PERIOD = 500; 49 50 53 public static int NOTIFICATIONS = 100; 54 55 60 public static void main(String [] args) 61 { 62 junit.textui.TestRunner.run(suite()); 63 } 64 65 70 public static Test suite() 71 { 72 TestSuite suite = new TestSuite("Timer Stress tests"); 73 74 suite.addTest(new TestSuite(TimerTestCase.class)); 75 76 return suite; 77 } 78 } 79 | Popular Tags |