1 22 package org.jboss.test.jmx.compliance.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 final long MAX_WAIT = 10000; 39 40 43 public static final long REPEAT_TIME = 500; 44 45 48 public static final long ZERO_TIME = 100; 49 50 55 public static void main(String [] args) 56 { 57 junit.textui.TestRunner.run(suite()); 58 } 59 60 65 public static Test suite() 66 { 67 TestSuite suite = new TestSuite("Timer Service Tests"); 68 69 suite.addTest(new TestSuite(TimerNotificationTestCase.class)); 70 suite.addTest(new TestSuite(TimerTest.class)); 71 72 return suite; 73 } 74 } 75 | Popular Tags |