Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] coverlet.console with vstest.console.exe reporting 0% coverage #1737

Open
DavidTynewyddBI opened this issue Mar 6, 2025 · 1 comment
Labels
needs more info More details are needed needs repro Needs repro to be investigated, cannot repro in local untriaged To be investigated

Comments

@DavidTynewyddBI
Copy link

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

  1. Create an empty winui3 class library with some public classes and methods
  2. Add a winui3 test project
  3. Reference the class library and call some but not all of the methods
  4. Build
  5. Run 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 project

Expected 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.

Terminating app with process ID '2144'.
  Passed TestMethod1 [5 ms]
  Passed TestMethod2 [12 ms]
  Passed TestMethod3 [28 ms]
Results File: <redacted>
Test Run Successful.
Total tests: 3
     Passed: 3
 Total time: 9.4086 Seconds

Calculating coverage result...
Hits file:'<redacted>\AppData\Local\Temp\ClassLibrary1_4dd00cc7-1a92-4f0b-a9ad-b917071ea6ab' not found for module: 'ClassLibrary1'
Hits file:'<redacted>\AppData\Local\Temp\TestApp1_4dd00cc7-1a92-4f0b-a9ad-b917071ea6ab' not found for module: 'TestApp1'
  Generating report '<redacted>\App1\TestApp1\coverage.json'
+---------------+------+--------+--------+
| Module        | Line | Branch | Method |
+---------------+------+--------+--------+
| ClassLibrary1 | 0%   | 100%   | 0%     |
+---------------+------+--------+--------+
| TestApp1      | 0%   | 0%     | 0%     |
+---------------+------+--------+--------+

+---------+------+--------+--------+
|         | Line | Branch | Method |
+---------+------+--------+--------+
| Total   | 0%   | 0%     | 0%     |
+---------+------+--------+--------+
| Average | 0%   | 50%    | 0%     |
+---------+------+--------+--------+

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.

❗ Please also read Known Issues

@github-actions github-actions bot added the untriaged To be investigated label Mar 6, 2025
@Bertk Bertk added needs more info More details are needed needs repro Needs repro to be investigated, cannot repro in local labels Mar 13, 2025
@Bertk
Copy link
Collaborator

Bertk commented Mar 13, 2025

Thank you for bringing this up.

The warning message is created in Coverage.cs which has this comments.

     // Hits file could be missed mainly for two reason
     // 1) Issue during module Unload()
     // 2) Instrumented module is never loaded or used so we don't have any hit to register and
     //    module tracker is never use
  1. Please check the diagnostic log file using parameter --Diag:"log.txt;tracelevel=verbose". Typically assembly load exceptions will give some hints.
  2. You should also execute "dotnet publish" after the build step and before test execution using --no-build parameter (see also VSTestIntegration
  3. Please check DebugType=portable (see BadImageFormatException .NET Framework 4.7.x, 4.8.x)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs more info More details are needed needs repro Needs repro to be investigated, cannot repro in local untriaged To be investigated
Projects
None yet
Development

No branches or pull requests

2 participants