package test.compliance.timer;
import junit.framework.Test;
import junit.framework.TestSuite;
public class TimerSUITE
extends TestSuite
{
public static final long MAX_WAIT = 10000;
public static final long REPEAT_TIME = 500;
public static final long ZERO_TIME = 100;
public static void main(String[] args)
{
junit.textui.TestRunner.run(suite());
}
public static Test suite()
{
TestSuite suite = new TestSuite("Timer Service Tests");
suite.addTest(new TestSuite(TimerNotificationTestCase.class));
suite.addTest(new TestSuite(TimerTest.class));
return suite;
}
}