minicover
minicover copied to clipboard
Cross platform code coverage tool for .NET Core
Hi! I have a test class with an init-only property (C# 9). I'm unable to generate code coverage, because the test fails at runtime. I use net5.0. Consider the following...
Could you please add a way to exclude certain patterns from coverage? For example, auto properties don't have to be covered to see if they work and automatically generated classes...
Hi, could you please add options like -line-coverage-lt and -line-coverage-gt of llvm-com (https://llvm.org/docs/CommandGuide/llvm-cov.html#cmdoption-llvm-cov-show-line-coverage-lt). If you gave me some kickstart how and where to realize it in your paradygm (Classes, Functions...
hello. I am the user of minicover. while building my package, I could see some message like below without any exception. "DependencyContext.RuntimeLibraries. No information about assebmly Tizen.NUI!" Tizen.NUI.dll exsit in...
Hey, I am trying to use minicover to instrument a running aspnet core webapi running inside of a container and get coverage from integration tests which stimulate the webapi through...
Thanks for a great tool 👍 It would be great if you could add Teamcity service message support, like this: `##teamcity[buildStatisticValue key='Total Number of Lines' value='14550'] ##teamcity[buildStatisticValue key='Covered Number of...
Hello, Recently, I upgraded a project from .NET6 to .NET7. With the new approach of using regex, I implemented and started using GeneratedRegex in the project. However, I noticed that...
## Description: Hello, hope you're good. I'm opening this issue to ask for guidance on how to deal with this error: ```bash # the command I used: dotnet minicover instrument...
Using Records with `with` keyword results in "Common Language Runtime detected an invalid program"
So we use have simple tests using records and `with` statement: ``` [Fact] public void GivenValidate_WhenSourceContractIsDefault_ThenItShouldBeInvalid() { var validationResult = new AddLeaseChangeModelValidator().Validate( GetValidModel(m => m with { SourceContractVersion = 0...