Replies: 2 comments 3 replies
-
@bdw429s Thanks for opening up a discussion. Cool testing framework you have there! The extension can consume a variety of coverage file types but we don't set these file structure specifications, instead we use a variety of parsing libraries that actually take the coverage files and return coverage data structures. vscode-coverage-gutters/@types/lcov-parse/index.d.ts Lines 4 to 46 in 2c2e2d3 If you are looking to choose from the supported list (lcov, cobertura, clover, jacoco, etc) I would definitely go with lcov as it appears to be the most popular. I have included some documentation below that should help with generating this type of coverage. Library used to consume lcov fileshttps://www.npmjs.com/package/lcov-parse Documentation around the file structurehttps://github.com/mitchhentges/lcov-rs/wiki/File-format#lcov-info-file-output-of-lcov-rs |
Beta Was this translation helpful? Give feedback.
-
I install Coverage gutters and set up the setting to line coverage. how can I execute this in dotnet, bash terminal. When I run the command I get |
Beta Was this translation helpful? Give feedback.
-
I'd like to build support in my test framework to generate test coverage file in a format that this extension can consume. However, after reading through the docs and examples, I can't find any clear spec on the actual XML file and what it needs to contain. I found a couple examples in the example folder, but they appeared to differ a lot between languages.
Beta Was this translation helpful? Give feedback.
All reactions