JetBrains Rider 2018.2 Help

Analyze Coverage of Unit Tests (Basic Scenario)

The most basic scenario of using dotCover is measuring how much of your code do tests cover. Baseline conditions are as follows. You have a solution opened in Visual Studio. Code in the solution is covered with some unit tests. The task is to understand how much of the code is covered.

To analyze coverage of unit tests in a solution

  1. Choose View | Tool Windows | Unit Tests from the main menu. This will open the Unit Test Explorer tool window. Here you can take a look at how many tests are there in the solution.

    unit test explorer howto rdr

  2. In the Unit Test Explorer window, select the tests whose coverage you want to analyze. If you want to analyze all tests, select the top-level node in the tree.

  3. Click Cover Unit Tests ThemedIcon JetBrainsDotCoverPresentationVsResourcesUnitTestingCoverageCover Screen Gray . This will run a normal unit tests session but dotCover will collect coverage data in the background. Test results will be shown in real time in the newly opened session tab. Coverage results (how tests cover particular classes and methods in your code) will be shown in the Unit Test Coverage tool window.

    unit test sessions coverage rdr

  4. Visualize code coverage by clicking the ThemedIcon Highlighting Screen Gray Highlight code button.

    default coverage highlighting rdr
    By default, coverage and test results are shown by markers in the left gutter of the Rider editor: a marker is red if any tests related to the current statement are failing, green if all tests are passing, and grey if there are no tests covering this statement.

Last modified: 21 December 2018