gpt4 book ai didi

c# - 使用 NUnit Assert.Throws 方法或 ExpectedException 属性?

转载 作者:IT王子 更新时间:2023-10-29 03:31:55 26 4
gpt4 key购买 nike

我发现这些似乎是测试异常的两种主要方法:

Assert.Throws<Exception>(()=>MethodThatThrows());

[ExpectedException(typeof(Exception))]

哪一个最好?一个比另一个有优势吗?还是仅仅是个人喜好问题?

最佳答案

主要区别在于:

ExpectedException() 属性在测试方法的任何处发生异常时使测试通过。
Assert.Throws() 的使用允许指定确切的代码中预期出现异常的位置。

NUnit 3.0 完全放弃了对 ExpectedException 的官方支持。

所以,我绝对更喜欢使用 Assert.Throws() 方法而不是 ExpectedException() 属性。

关于c# - 使用 NUnit Assert.Throws 方法或 ExpectedException 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15014461/

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