verifDeleteReqSignoff
verifDeleteReqSignoff(g_sessionId[?reqIdg_reqId] ) => t / nil
Description
Deletes the signoff setup of the specified requirement in a Verifier session.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
There is no signoff information to delete, or the command failed. |
Examples
The following example opens a Verifier cellview and retrieves a requirement that has the verification type manual. The example then retrieves the sign-off details of that requirement (ID1). Then, it removes the sign-off and checks its removal.
uid = verifOpenCellView("test" "results" "verifier")
=> 0
verifGetReqSignoff(uid "ID1")
(nil signoffUser "Tom" signoffTime "Jun 14 15:25:59 2018"
signoffLocation "/ADE1/users/harry/tst/EAV_RAK" signoffLifetime "Once"
signoffComments
"Manully passing this requirement until next run."
)
Deletes a signoff setup for a single requirement.
verifDeleteReqSignoff(uid ?reqId "ID1")
=> t
verifGetReqSignoff(uid "ID1")
=> nil
Deletes signoff setup for a list of requirements.
verifDeleteReqSignoff(uid ?reqId list("ID1" "ID2"))
=> t
Deletes signoff setup for all requirements.
verifDeleteReqSignoff(uid)
=> t
Related Topics
Return to top