maeCopyTestToRun
maeCopyTestToRun(t_testName[?sessiont_session] [?runt_run] | [?allg_all] ) => t / nil
Description
Copies one or more tests from the active setup to a run in the run plan.
Arguments
Value Returned
Examples
The following example copies the test AC to run Run.2:
maeCopyTestToRun("AC" ?run "Run.2")
The following example copies the test AC to all runs in the run plan:
maeCopyTestToRun("AC" ?all t)
The following example copies multiple tests to run Run.2:
maeCopyTestToRun(list("Test.1" "Test.2" "Test.3") ?run "Run.2")
The following example copies multiple tests to runs Run.2 and Run.3:
maeCopyTestToRun(list("AC" "AC1" "AC2") ?run list("Run.2" "Run.3"))
Return to top