verifSignOffReq
verifSignOffReq(g_sessionId[ ?reqIdg_reqId] [ ?userNamet_userName] [ ?lifetimet_lifetime] [ ?expDatet_expDate] [ ?commentst_comments] [ ?disableStateg_disableState] ) => t / nil
Description
Signs off the specified requirements using the provided information in a Verifier session. You can sign off the requirements that have the verification type 'Manual' or the requirements that failed verification (the overall status of requirement is 'Fail', 'Not Mapped', 'Spec Check Fail', 'Signoff Required' or 'Signed Off').
Arguments
Value Returned
Examples
The following example oOpens a Verifier cellview and then signs off the requirements.
uid = verifOpenCellView("test" "results" "verifier")
=>0
Signs off a single requirement.
verifGetReqSignoff(uid "ID1")
=>nil
Signs off a single requirement.
verifSignOffReq(uid ?reqId "ID1" ?comments "Manually passing this requirement until
next run")
=> t
verifGetReqSignoff(uid "ID1")
(nil signoffUser "Tom" signoffTime "Jun 14 16:07:56 2018"
signoffLocation "/ADE1/users/harry/tst/EAV_RAK" signoffLifetime "Once"
signoffFullUserName
"" signoffExpireDate "" signoffComments "Manually passing this requirement until
next run"
)
Signs off a list of requirements.
verifSignOffReq(uid ?reqId list("ID1" "ID2"))
=> t
Signs off all requirements that can be signed off.
verifGetReqSignoff(uid "ID1")
(nil signoffUser "Tom" signoffTime "Jun 14 16:09:31 2018"
signoffLocation "/ADE1/users/harry/tst/EAV_RAK" signoffLifetime "Once"
signoffFullUserName
"" signoffExpireDate "" signoffComments ""
)
Related Topics
Return to top