01: package abbot.editor;
02:
03: import junit.extensions.abbot.*;
04: import junit.framework.Test;
05:
06: /** Provides aggregation of all scripts for testing the Script Editor.
07: Assumes tests are available in a subdirectory "test/scripts/editor". */
08:
09: public class ScriptEditorFunctionalSuite extends ScriptFixture {
10:
11: /** Construct a test case with the given name. */
12: public ScriptEditorFunctionalSuite(String name) {
13: super (name);
14: }
15:
16: /** Return the full suite of this test case's variations. */
17: public static Test suite() {
18: return new ScriptTestSuite(ScriptEditorFunctionalSuite.class,
19: "test/scripts/editor");
20: }
21:
22: /** Run the default test suite. */
23: public static void main(String[] args) {
24: TestHelper.runTests(args, ScriptEditorFunctionalSuite.class);
25: }
26: }
|