1 7 8 package test.compliance.monitor; 9 10 import junit.framework.Test; 11 import junit.framework.TestSuite; 12 13 18 public class MonitorSUITE 19 extends TestSuite 20 { 21 24 public static final long MAX_WAIT = 1000; 25 26 29 30 public static final long GRANULARITY_TIME = 1; 31 32 37 public static void main(String[] args) 38 { 39 junit.textui.TestRunner.run(suite()); 40 } 41 42 47 public static Test suite() 48 { 49 TestSuite suite = new TestSuite("Monitor Service Tests"); 50 51 suite.addTest(new TestSuite(MonitorTestCase.class)); 52 53 return suite; 54 } 55 } 56 | Popular Tags |