verifAddCustomOutput
verifAddCustomOutput(g_sessionId t_libName t_cellName t_viewName t_historyName t_testName t_outputName[?createRequirementsg_create] [?datag_data] ) => t / nil
Description
Adds an output to a custom implementation.
Arguments
Value Returned
Examples
The following example shows how to add a custom output to an implementation in various scenarios.
Adds custom outputs to an implementation.
sess = verifOpenCellView("test" "sample" "verifier")
=> 0
verifAddCustomOutput(sess "customLib" "cell" "view" "hist" "test1" "out1")
verifAddCustomOutput(sess "customLib" "cell" "view" "hist" "test2" "out2" ?createRequirements t ?data '("details" "45" "unit" "V" "spec" "> 40")
Creates a custom implementation view.
verifAddImp(sess "l" "c" "v" "h" ?custom t)
Adds a test and output to the custom implementation.
verifAddCustomOutput(sess "l" "c" "v" "h" "test" "output" ?createRequirements nil)
Adds a test and output to the custom implementation with additional data.
verifAddCustomOutput(sess "l" "c" "v" "h" "test" "output" ?createRequirements nil ?data list("details" "45" "unit" "V" "spec" ">45")
Related Topics
Return to top