You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we support only C# (cobertura format) and C++ branch coverage is not supported.
We do support line and block coverage. Essentially, we split C++ binary into blocks [block is list of instructions without any jump etc.] and add probe for each block. So having 100% block coverage means you covered all your instructions. This is not telling you if you reach each instruction from all possible places (through jumps etc.) and if all conditions had both values.
We don't have plans to add this at the moment. Please create ticket also here: https://developercommunity.visualstudio.com/home
If we see more people interested, we can consider adding this feature.
Using the nuget package https://www.nuget.org/packages/Microsoft.CodeCoverage/ and pointing into it with runsettings
The text was updated successfully, but these errors were encountered: