verifExportCoverageDataForImp
verifExportCoverageDataForImp(g_sessionId t_fileName t_spaceName[ ?implementationg_implementation] [ ?indentedg_indented] ) => t / nil
Description
Exports coverage data for the specified implementation.
Arguments
Value Returned
|
Coverage data of the specified implementations is exported to the JSON file. |
|
Examples
The following example exports coverage data for the implementations in the specified session.
Opens an existing Verifier cellview that includes a Setup Library view.
uid = verifOpenCellView("test" "coverages" "verifier" ?openWindow nil)
=> 0
Export all implementations in compact format
verifExportCoverageDataForImp(uid "allImps.json" "FullSpace")
=> t
Exports the specified implementations in indented format
verifExportCoverageDataForImp(uid "imp.json" "FullSpace" ?implementation "test/coverages/maestro_space/Active" ?indented t)
=> t
Exports the specified implementations in compact format
verifExportCoverageDataForImp(uid "imp.json" "FullSpace" ?implementation list("test" "coverages" "maestro_space" "Active"))
=> t
Related Topics
Return to top