DEV Community

Discussion on: .Net Core Unit Test and Code Coverage with Visual Studio Code

Collapse
 
manishi2v profile image
Manish Jain

Nice Article. Is this possible to generate coverlet xml file using test project dll instead of csproj? Also, Is there any way to generate a single coverage file for multiple test case projects?

Collapse
 
equiman profile image
Camilo Martinez

I've never tried scan a dll file and to be honest sound weird to me because this practice it's more to check quality on source code and a dll file, in general, have compiled code.

On the coverage reports that I see on C# and JS, all of them create a report for each file and not for each test case.