Visual Studio "Debug Unit Test" fails to hit breakpoints

35,654

Solution 1

I just had a problem hitting breakpoints in VS2015.

I am always using the solution configuration called Debug but for some reason my solution was set to build the Release version.

Switching from Release to Debug in the dropdown at the top of Visual Studio fixed my problem.

Solution 2

Right click + Run Test(s) will not hit the breakpoint.

Right click + Debug Test(s) will!

Solution 3

Another workaround: Force the debugger to be launched from within your unit test:

System.Diagnostics.Debugger.Launch();

Solution 4

What happened to be the solution for me: make sure all your nuget package versions match. My Unit Test project was using a version of Newtonsoft.Json that was newer than the Newtonsoft.Json reference on the project I was testing. Once I updated all nuget packages to the latest version I was able to hit the breakpoint

Solution 5

One problem that I stumbled upon when trying to debug a test method was that it was private. Simply changing the method from private to public fixed my problem.

I don't know why this is a problem, but it probably has something to do with the implementation of the [Test] attribute of NUnit.

Share:
35,654
sym3tri
Author by

sym3tri

Updated on February 06, 2022

Comments

  • sym3tri
    sym3tri over 2 years

    When using Visual Studio 2008 and debugging my unit tests... sometimes the debugger works fine. However very often after modifying some code then clicking "Debug Unit Test" Visual Studio will fail to hit the breakpoints in the code. The debugger basically hangs and eventually the tests runs with the new code anyway, but never stops to let me see what is going on.

    I'm assuming this has something to do with some type of assembly caching done by the debugger, but not matter what I do (clean project, delete bin folders, restart VS, etc) I can never get the right assembly to load. Has anyone else seen this behavior? Any solutions?

    By the way, using Resharper 4.5, and .NET 3.5 on Win XP.