coverlet
coverlet copied to clipboard
Cross platform code coverage for .NET
I have an NUnit test project with a dependency on `coverlet.collector v3.0.3` which becomes unusable when `dotnet test` is invoked with `--collect:"XPlat Code Coverage"`. Repro steps: ```bash git clone https://github.com/lynx-chess/Lynx...
My particular issue came from trying to resolve an issue with Fine Code Coverage not reporting any results in my repository. At first there were no results, so I created...
closes #1276
I have the following class ```csharp namespace CovetletTest; public record Data(int One, string Two); public class DoerOfStuff { private readonly ILogger _log; public DoerOfStuff(ILogger log) { _log = log; }...
When testing an AsyncEnumerable extension that transforms an AsyncEnumerable in an nested form of well sized batches, I get a high percentage of uncovered branches. There aren't any obvious branches...
### Problem: Code coverage not showing up for primary project dll. ### Analysis: Project file is a .NET Core 6 MVC Webapp. We have a dependency on the Microsoft.AspNetCore.App framework....
Hi all, What could cause this to happen?: **Symbols were found but are not matching the assembly** After updating to the most recent version (3.1.2) I get this stacktrace (3.1.0...
When returning two logically connected conditions, then the branch and line coverages are not consistent. To reproduce this, certain conditions must be met: 1. Return the result of two logically...
I may have discovered a wrong line coverage. To reproduce it four different circumstances must be met: 1. Use await using (only using works correctly) 2. await using must be...
I am trying to generate code coverage for one of my solutions in an Azure DevOps build pipeline. Whilst I have the results of my tests appearing upon build completion...