dotCover 2017.1 Help

Navigation to Covering Tests

ReSharper | Cover | Show Covering Tests
Ctrl+Alt+K T
ReSharper_ShowTestsCoveringEditorContext

dotCover provides a shortcut to detect which unit tests cover a particular statement in your code. In the Visual Studio editor, you can invoke a pop-up that lists covering tests and navigate directly to any of these tests. Additionally, from this pop-up you can instantly run them or add to an existing unit test session.

dotCover takes the information on the covering unit tests from the current coverage snapshot. Therefore, in some cases this information may be unavailable, and dotCover cannot perform this navigation:

  • No coverage snapshot is open. In this case, the corresponding commands in the main and context menus are grayed out.
  • No unit tests cover the current statement. In this case, the commands are active but the pop-up will show the following message: No tests cover this statement.
  • The current snapshot has no per-test data . In this case, the commands are active but the pop-up will show the following message: Current snapshot does not contain per-test info.

It is obvious that for the code not covered with unit tests, this navigation is impossible. Therefore, you can first highlight covered code and then navigate from the code highlighted as covered.

To navigate to covering tests

  1. In the editor, place the caret at a code statement.
  2. Press Ctrl+Alt+K T or choose ReSharper | Cover | Show Covering Tests in the main menu .
  3. Do one of the following:
    • Press Ctrl+Alt+K T or choose ReSharper | Cover | Show Covering Tests in the main menu .
    • If highlighting is enabled, hold the cursor on a particular highlighting marker until a tooltip appears. Click on the tooltip.
  4. In the pop-up that appears, you will see the list of unit tests that cover the statement.
    /help/img/dotnet/2017.1/dotCover_show_covering_tests.png
  5. Double-click on the desired unit test to open it in the editor.
Last modified: 24 August 2017

See Also