maeDeleteOutput
maeDeleteOutput(t_outputName t_testName[?sessiont_sessionName] ) => t/ nil
Description
Deletes the specified output from the setup database.
Arguments
|
If not specified, the output is deleted from the current session. |
||
Value Returned
Examples
Deletes an output from the setup database of the specified test.
sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeDeleteOutput("out1" "test1")
=> t
Deletes multiple outputs from the setup database of the specified test.
maeDeleteOutput(list("out1" "out2" "out3")"test1")
=> t
Return to top