[BUG] coverlet.console with vstest.console.exe reporting 0% coverage #1737
Labels
needs more info
More details are needed
needs repro
Needs repro to be investigated, cannot repro in local
untriaged
To be investigated
Describe the bug
I'm attempting to get code coverage on a WinUI3 project which includes tests marked with
[UITestMethod]
.If I ignore the UITestMethods, I can successfully get coverage using
dotnet test --collect:"XPlat Code Coverage"
, however dotnet test doesn't work with UITestMethod, hence using vstest.console.exe.I'm using coverlet.console, which runs the tests and reports the correct referenced projects but with 0% coverage, along with the message "Hits file not found for module ".
To Reproduce
coverlet .\bin\x64\Debug\net8.0-windows10.0.19041.0\win-x64\TestApp1.build.appxrecipe --target "vstest.console.exe" --targetargs "bin\x64\Debug\net8.0-windows10.0.19041.0\win-x64\TestApp1.build.appxrecipe /Logger:trx" --verbosity detailed
where TestApp1 is the name of your test projectExpected behavior
Tests to run and code coverage to be produced
Actual behavior
Either reports 0% or 100% while saying the hits file was not found.
e.g.
Configuration (please complete the following information):
Please provide more information on your .NET configuration:
* Which coverlet package and version was used? coverlet.console 6.0.4.1+90b21079d4
* Which version of .NET is the code running on? .net8
* What OS and version, and what distro if applicable? Windows 11 26100
* What is the architecture (x64, x86, ARM, ARM64)? x64
* Do you know whether it is specific to that configuration? Unknown
Additional context
I'm aware of the known issue giving 0% coverage, however this is an empty project with essentially empty tests.
The text was updated successfully, but these errors were encountered: