Code4IT

The place for .NET enthusiasts, Azure lovers, and backend developers

How to view code coverage with Coverlet and Visual Studio 2019

2020-12-29 5 min read Blog

Code coverage is an indicator of the quality of your code. With Coverlet and VS2019 you can have a human readable report to see where to improve your code.

Table of Contents

Just a second!
If you are here, it means that you are a software developer. So, you know that storage, networking, and domain management have a cost .

If you want to support this blog, please ensure that you have disabled the adblocker for this site. I configured Google AdSense to show as few ADS as possible - I don't want to bother you with lots of ads, but I still need to add some to pay for the resources for my site.

Thank you for your understanding.
- Davide

Having a high code coverage percentage boosts your confidence in your code: the more thoroughly your code is tested, the lesser are the possibilities to have bugs. Of course, You’ll never have a bug-free project, that’s utopian. But you can work toward reducing the possible bugs by testing each and every part of your code.

The term code coverage represents the percentage of code covered by tests: it is calculated basing on two values: line coverage, which is about the exact count of lines covered, and branch coverage which is about the branches (if-else, switch, try-catch) that have been executed by our test suite.

In this article, we’re gonna see how to calculate code coverage on .NET projects and how to visualize a Code Coverage report on Visual Studio 2019.

Note: there’s an update published on 2022-12-16, so don’t skip that part!

Setting up a simple project

Let’s create a class library with a single class with only one method:

public class MyArray {

    private readonly int[] _myArr;

    public int[] Array => _myArr;

    public MyArray(int size)
    {
        _myArr = Enumerable.Range(0, size).ToArray();
    }

    public bool Replace(int position, int newValue) {
        if (position < 0)
            throw new ArgumentException("Position must not be less than zero");

        if(position >= _myArr.Length)
            throw new ArgumentException("Position must be valid");

        _myArr[position] = newValue;
        return true;
    }
}

Then, we have to create a test class and write some tests for the MyArray class:

public class MyArrayTests
{
    [Test]
    public void MyArray_Should_ReplaceValue_When_PositionIsValid()
    {
        var arr = new MyArray(5);
        var result = arr.Replace(2, 99);

        Assert.IsTrue(result);
        Assert.AreEqual(99, arr.Array[2]);
    }

    [Test]
    public void MyArray_Should_ThrowException_When_PositionIsLessThanZero()
    {
        var arr = new MyArray(5);
        Assert.Throws<ArgumentException>(() => arr.Replace(-8, 0));
    }
}

The code and the tests are pretty straightforward; but have we really covered the Replace method with enough tests to be sure not to have missed something?

Coverlet - the NuGet Package for code coverage

The first thing to do to add code coverage reports to our project is to install Coverlet, a NuGet package, whose documentation can be accessed on GitHub.

You must add Coverlet.msbuild to every test project in your solution. So, add it with the NuGet package manager or with the CLI, running the command dotnet add package coverlet.msbuild.

This package relies on the MSBuild tool to collect code coverage data and statistics, and save them into a specific file that can be opened with other tools or applications.

Installing code coverage collector on Visual Studio 2019

The next step is to install in Visual Studio an extension that, given the code coverage report, displays the result in a human-readable format.

The tool we’re gonna use is ReportGenerator, that provides support for projects based on .NET Core.

To install it, open the PowerShell with admin privileges and run the following commands:

dotnet tool install -g dotnet-reportgenerator-globaltool
dotnet tool install dotnet-reportgenerator-globaltool --tool-path tools
dotnet new tool-manifest
dotnet tool install dotnet-reportgenerator-globaltool

These commands install ReportGenerator alongside global .NET tools.

And now, it’s time to install the actual Visual Studio extension.

The first step is to head to the Extensions menu and select Manage Extensions. Then, search Run Coverlet Report and install it - you have to close all Visual Studio instances to install it.

Coverlet Report extension on VS2019

Since we are integrating Coverlet with MSBuild, you have to head to Tools > Options and change the Integration Type from Collector to MSBuild.

Coverlet Integration type

Once everything is installed (remember to install Coverlet in all and only test projects) there’s only one thing to do: try them!

Our first run

First of all, run all of you tests for the first time: this helps to initialize correctly all the references to the test projects. You must do this step only the first time.

Now, under the Tools menu, click on Run Code Coverage: this command runs the tests, generates a report files and uses it to generate a full report like this:

Code coverage report

Here we go! We have our code coverage report!

You can even drill down into details for each class to find out other the values for Branch Coverage, Line Coverage and Cyclomatic complexity.

Code coverage details

For each class, you can see the details of the lines covered by tests. But if you are like me, you don’t want to open each file to see what to do, but you’d like a way to see it directly in your IDE.

Well, just click on Toggle Code Coverage Highlighting under the Tools menu: you will see all the lines covered by tests in green, and all the ones that aren’t covered by any tests in red.

Code coverage highlighting in source files

This will help you speed up your development and find out possible bugs and flaws earlier.

This article first appeared on Code4IT 🐧

Update 2022-12-16

Coverlet.MsBuild has some known bugs. You should use Coverlet.Collector instead of Coverlet.MsBuild, as stated here.

This means that you have to install another NuGet package, running dotnet add package coverlet.collector, and remove coverlet.msbuild.

Then you must head back to Tools > Options and change the Integration Type back from MSBuild to Collector.

Wrapping up

We’ve seen how easy it is to run code coverage on .NET Core projects.

The installation of the global tool and the extension needs to be done only the very first time. So the only thing to do when you want to see the code coverage report for your projects is to install coverlet.msbuild. Quite easy, uh?

Happy coding!