dotCover 2018.1 Help

Introduction

JetBrains dotCover is a .NET unit test runner and code coverage tool. You can use it integrated in Visual Studio, as a standalone application, or as a command line application. It also can easily integrate with other tools.

dotCover lets us analyze how much of our .NET application code is actually being tested. By measuring method calls during unit tests or when running the application manually, dotCover shows us which statements were covered and which were not.

dotCover serves you for two main purposes:

  • Project risk identification
  • Code quality assurance

To accomplish these tasks, dotCover provides the following features:

Once you perform code coverage analysis, dotCover helps you investigate coverage results by highlighting covered snd non-covered code and navigation to covering tests in Visual Studio text editor, filtering out solution nodes from analysis, generating test reports in multiple formats, and more.

Last modified: 20 August 2018

See Also