如果Assert throw,则无法展开或继续和编辑

时间:2016-03-08 00:37:02

标签: c# visual-studio visual-studio-2015 mstest visual-studio-debugging

我正在尝试在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。

0 个答案:

没有答案