maeDeleteTest
maeDeleteTest(
t_testName
[ ?run t_run ]
[ ?session t_session ]
)
=> t / nil
Description
Deletes the given test from the active setup or the specified run in the run plan.
Arguments
|
t_testName
|
Name of the test to be deleted.
|
|
?run t_run
|
Name of the run from which the test is to be deleted.
By default, this argument is set to nil. If not specified, the test is deleted from the active setup in the maestro cellview.
|
|
?session t_session
|
|
|
Name of the session. If not specified, the current session is used.
|
Value Returned
|
t
|
The test is deleted.
|
|
nil
|
The test is not deleted.
|
Examples
Deletes the test testA from the run Run.0.
maeDeleteTest("testA" ?run "Run.0")
Deletes the test testA from the active setup.
maeDeleteTest("testA")
=> t
Related Topics
Modifying a Run in the Run Plan
maeDeleteTags
maeDeleteVar
Return to top