01: package abbot.script;
02:
03: import junit.extensions.abbot.TestHelper;
04:
05: public class StepTest extends junit.framework.TestCase {
06:
07: public void testStub() {
08: }
09:
10: public StepTest(String name) {
11: super (name);
12: }
13:
14: public static void main(String[] args) {
15: TestHelper.runTests(args, StepTest.class);
16: }
17: }
|