gpt4 book ai didi

c# - 使用 nunit 测试属性是否抛出异常

转载 作者:太空狗 更新时间:2023-10-29 18:12:46 26 4
gpt4 key购买 nike

似乎没有属性委托(delegate)。是否有方便的方法来执行以下操作?

Assert.Throws<InvalidOperationException>(
delegate
{
// Current is a property as we all know
nullNodeList.GetEnumerator().Current;
});

最佳答案

快进四年,NUnit 现在支持它(当前版本是 v2.6 - 我没有检查它是哪个版本引入的)。

Assert.That(() => nullNodeList.GetEnumerator().Current,
Throws.InvalidOperationException);

关于c# - 使用 nunit 测试属性是否抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3369811/

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