We are using OpenCover in C# project. Is there any way to append the result of new runs of the tests to the old results.xml
generated by OpenCover? Or is there any other tool with this functionality?
Asked
Active
Viewed 207 times
0

OldSchool
- 2,123
- 4
- 23
- 45
1 Answers
0
AxoCover, which uses OpenCover and can be installed in Visual Studio through Tools - Extensions and Updates...
, for every run creates a directory containing the file coverageReport.xml
which uses the same format as OpenCover.
These reports could then be merged using XSLT. See the results here for how to do this https://stackoverflow.com/search?q=how+to+merge+two+xml+files

Mark_Gibson
- 922
- 1
- 12
- 32