gpt4 book ai didi

.net - 如何防止预期的异常破坏调试测试运行?

转载 作者:行者123 更新时间:2023-12-04 02:00:46 25 4
gpt4 key购买 nike

在 Debug模式下运行 MSTEST 单元测试时,执行会在抛出的每个预期异常中停止。我的测试看起来像这样

[TestMethod()]
[ExpectedException(typeof(ArgumentNullException))]
public void ShouldThrowExceptionWhenPassingNull()
{
object data = null;
target.CheckNull(data);
}

目标方法如下所示:
public void CheckNull(object data)
{
if (ReferenceEquals(null, data))
{
throw new ArgumentNullException("data");
}
} // test run breaks here: ArgumentNullException was unhandled by user code

最佳答案

您是否尝试使用 ctrl-R ctrl-T 运行测试?而不是 ctrl-R T ?

编辑
如果不是键盘快捷键问题,请查看 this链接。您可以按照那里的说明尝试以下操作:

  1. Disable "break on user unhandled exceptions" for the exception types you you are encountering here (via Debug -> Exceptions)
  2. Disable "break on user unhandled exceptions" for all exceptions (via Debug -> Exceptions)
  3. Disable "Just My Code"

关于.net - 如何防止预期的异常破坏调试测试运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3362239/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com