package test.stress.timer;
import junit.framework.Test;
import junit.framework.TestSuite;
public class TimerSUITE
extends TestSuite
{
public static int TIMERS = 200;
public static int OFFSET = 100;
public static int PERIOD = 500;
public static int NOTIFICATIONS = 100;
public static void main(String[] args)
{
junit.textui.TestRunner.run(suite());
}
public static Test suite()
{
TestSuite suite = new TestSuite("Timer Stress tests");
suite.addTest(new TestSuite(TimerTestCase.class));
return suite;
}
}