我正在尝试在VS2015调试器中进行编辑/继续。
这在VS2013中100%有效。
但是,一旦我点击Assert.
,我一直无法解除错误。
我尝试将AssertFailedException
添加到Exception Settings
中的CLR例外。我尝试切换调试设置:Enable Just My Code
。并Unwind the call stack on unhandled exceptions
。
[TestMethod]
public void TEST()
{
int a = 5;
int b = 1;
Assert.AreEqual(a, b);
throw new AssertFailedException("THIS IS OK");
int c= a + b;
}
更新: 当我尝试多个版本的Microsoft.VisualStudio.QualitTools.UnitTestFramework库时,同样失败。 10.0.0& 10.1.0(文件版本12和14)。我现在正在尝试VS2015 Update2RC。