You can use the callScript method as follows:
.... // import statements and comments import myscripts;// Added so script can find test3. public class RegressionSuite extends RegressionSuiteHelper { public void testMain (Object[] args) { callScript("test1"); callScript(new test2()); callScript("myscripts.test3"); } }
Do not call the testMain method from another Functional Tester script (for example, test1.testMain(...);). Functional Tester would then be unable to ensure that each Functional Tester script is invoked properly and has the expected event handling support.