Why are breakpoints in tests not hit?
问题 I have several NUnit tests in a test project that is part of a solution. I have a breakpoint in each test method. A "typical" one of these methods is: public void TestHHSInterface() { var HHSClient = IOC.container.Resolve<IHHSClient>(); var s = HHSClient.GetTestMessage("Duckbilled", "Platypus"); Assert.Greater(s.Value.Length, 0); } The tests run, as evidenced by what I see here: Is this normal that breakpoints are not hit? It seems that they are running, but that the results (passed 3, failed