1 7 8 package test.compliance.timer; 9 10 import junit.framework.Test; 11 import junit.framework.TestSuite; 12 13 18 public class TimerSUITE 19 extends TestSuite 20 { 21 24 public static final long MAX_WAIT = 10000; 25 26 29 public static final long REPEAT_TIME = 500; 30 31 34 public static final long ZERO_TIME = 100; 35 36 41 public static void main(String[] args) 42 { 43 junit.textui.TestRunner.run(suite()); 44 } 45 46 51 public static Test suite() 52 { 53 TestSuite suite = new TestSuite("Timer Service Tests"); 54 55 suite.addTest(new TestSuite(TimerNotificationTestCase.class)); 56 suite.addTest(new TestSuite(TimerTest.class)); 57 58 return suite; 59 } 60 } 61 | Popular Tags |