dotCover 2017.1 Help

Debugging Covering Tests

Once you have coverage data, you can use dotCover to quickly analyze the cause of failed tests:

Examining stack trace

To see the stack trace of a failed test

  1. Open the snapshot that you want to analyze in the Coverage Results Browser window or in the Coverage area of the Unit Test Sessions window/ Continuous Testing Session window .
  2. Select the desired test.
  3. Select the Output tab on the right part of the window.

Note that there is a faster way of doing this operation if you use code coverage highlighting.

To see the stack trace of a failed test (if highlighting is enabled)

  1. In Visual Studio editor, find the line of code that leads to a failed test.
  2. Click on the highlighting marker in the left gutter.
  3. In the list, select the desired test.
  4. Click the arrow that stands after the test name.
/help/img/dotnet/2017.1/dc_stack_trace.png

Debugging tests

If the code coverage highlighting is enabled, you can quickly set a breakpoint on a particular line and run debugging.

To set a breakpoint and run debugging

  1. In Visual Studio editor, find the line of code that leads to a failed test.
  2. Click on the highlighting marker in the left gutter.
  3. In the list, select the desired test.
  4. Click the /help/img/dotnet/2017.1/dc_bpoint_debug.png button.
Last modified: 24 August 2017

See Also