nUnit Assert.That(method,Throws.Exception) 不捕获异常

发布于 2024-08-26 22:35:15 字数 771 浏览 5 评论 0原文

有人可以告诉我为什么这个检查异常的单元测试失败了?显然我真正的测试是检查其他代码,但我使用 Int32.Parse 来显示问题。

[Test]
public void MyTest()
{
    Assert.That(Int32.Parse("abc"), Throws.Exception.TypeOf<FormatException>());
}

测试失败,给出此错误。显然,我正在尝试测试此异常,并且我认为我的语法中遗漏了一些内容。

Error   1   TestCase '.MyTest'
failed: System.FormatException : Input string was not in a correct format.
at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at System.Int32.Parse(String s)

基于 抛出约束 (NUnit 2.5) 的文档

Can someone tell me why this unit test that checks for exceptions fails? Obviously my real test is checking other code but I'm using Int32.Parse to show the issue.

[Test]
public void MyTest()
{
    Assert.That(Int32.Parse("abc"), Throws.Exception.TypeOf<FormatException>());
}

The test fails, giving this error. Obviously I'm trying to test for this exception and I think I'm missing something in my syntax.

Error   1   TestCase '.MyTest'
failed: System.FormatException : Input string was not in a correct format.
at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at System.Int32.Parse(String s)

based on the documentation at Throws Constraint (NUnit 2.5)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

所有深爱都是秘密 2024-09-02 22:35:15

试试这个:

Assert.That(() => Int32.Parse("abc"), Throws.Exception.TypeOf<FormatException>());

基本上你需要将委托传递给 Assert.That,就像链接状态中的文档一样(请注意,我在这里使用了 lambda 表达式,但它应该是相同的) 。

Try this instead:

Assert.That(() => Int32.Parse("abc"), Throws.Exception.TypeOf<FormatException>());

Basically you need to pass a delegate to Assert.That, just like the documentation in your link states (note that I've used a lambda expression here, but it should be the same).

拿命拼未来 2024-09-02 22:35:15

您使用什么测试运行器?并非所有这些都可以在异常断言下正常工作。

使用 [ExpectedException (typeof(FormatException))] 甚至 Assert.Throws可能会有更好的运气。 (() => Int32.Parse("abc"));

What test runner are you using? Not all of them work correctly with the exception assertions.

You may have better luck using [ExpectedException (typeof(FormatException))] or even Assert.Throws<FormatException> (() => Int32.Parse("abc"));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文