polyspace.test.RelationalBoundaryInfo Class
R2026bNamespace: polyspace.test
Description
This Python® class contains relational boundary coverage results obtained from executing C/C++ tests. Depending on how you create the object, the results can show the relational boundary coverage for an entire project, a single file, or a single function.
Creation
Syntax
Description
relBoundCoverageInfo = coverageResults.getCoverageInfo("relbound")
loads relational boundary coverage results for the entire project:
From a
polyspace.test.CoverageResultsobjectcoverageResults.To a
polyspace.test.RelBoundCoverageInfoobjectrelBoundCoverageInfo.
relBoundCoverageInfo = coverageResults.getCoverageInfo("relbound", fileName)
loads relational boundary coverage results for the file fileName
(specified by full path or path relative to the current working folder):
From a
polyspace.test.CoverageResultsobjectcoverageResults.To a
polyspace.test.RelBoundCoverageInfoobjectrelBoundCoverageInfo.
relBoundCoverageInfo = coverageResults.getCoverageInfo("relbound", fileName, functionName)
loads relational boundary coverage results for the file fileName and
function functionName:
From a
polyspace.test.CoverageResultsobjectcoverageResults.To a
polyspace.test.RelBoundCoverageInfoobjectrelBoundCoverageInfo.
Properties
Examples
Version History
Introduced in R2024b