Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Cobertura Code Coverage HighlighterNew to Visual Studio Code? Get it now.
Cobertura Code Coverage Highlighter

Cobertura Code Coverage Highlighter

vrcomputing

|
285 installs
| (0) | Free
Cobertura code coverage highlighter parsing OpenCppCoverage generated cobertura xml file and highlighting hit and missed lines in the C++ source files
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Cobertura Code Coverage Highlighter

Cobertura code coverage highlighter parsing OpenCppCoverage generated cobertura XML files and highlighting hit and missed lines in the C++ source files.

doc/extension.png

Commands

Title Command Description
CCC: Select a report for coverage analysis coberturahighlighter.selectReport Select a report file based on configuration coberturahighlighter.reportPattern. Afterwards use the CCC: Show Coverage or CCC: Hide Coverage commands to show or hide the coverage of contained source files.
CCC: Show Coverage coberturahighlighter.showCoverage Shows hit and missed lines in the C++ source files.
CCC: Hide Coverage coberturahighlighter.hideCoverage Hides hit and missed lines in the C++ source files.

Configurations

"coberturahighlighter.hitColor": {
    "type": "string",
    "default": "#4CAF5080",
    "description": "Color for covered rows",
    "format": "color"
},
"coberturahighlighter.missColor": {
    "type": "string",
    "default": "#F4433680",
    "description": "Color for uncovered rows",
    "format": "color"
},
"coberturahighlighter.reportPattern": {
    "type": "string",
    "default": "*.cobertura",
    "description": "Glob pattern for cobertura report filenames"
},
"coberturahighlighter.minCoverage": {
    "type": "integer",
    "default": 80,
    "description": "Minimum line coverage in percent"
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft