verifExportCoverageDataForReq
verifExportCoverageDataForReq(g_sessionId t_fileName[ ?reqIdt_reqId] [ ?indentedg_indented] ) => t / nil
Description
Exports coverage data for the specified requirement.
Arguments
Value Returned
|
Coverage data of the specified requirements is exported to the JSON file. |
|
Examples
The following example exports coverage data for the requirements in the specified session.
Opens an existing Verifier cellview that includes a requirement with verification space.
uid = verifOpenCellView("test" "coverages" "verifier" ?openWindow nil)
=> 0
Export all requirements in compact format
verifExportCoverageDataForReq(uid "allReqs.json")
=> t
Exports the specified requirements in indented format
verifExportCoverageDataForReq(uid "req.json" ?reqId "3a7333a6-d5bb-49a8-9d62-0048bc92e5cb" ?indented t)
=> t
Related Topics
Return to top