如何使用 nunit 和 moq 进行异常处理?
我正在尝试使用 nunits 新的异常处理方式,但我发现很难找到有关它的信息以及如何将它与最小起订量一起使用。
我现在有最小起订量,它在模拟方法上抛出异常,但我不知道如何使用 nunit 来捕获它并查看它。
I am trying to use nunits new way of exception handling but I am finding it hard to find information on it and how to also use it with moq.
I have right now moq that throws a exception on a mocked method but I don't know how to use nunit to catch it and look at it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有几种不同的方法可以做到这一点;我使用 Assert.Throws。
例如,
如果需要,您可以进一步查询异常对象,例如
There's a few different ways to do it; I use Assert.Throws.
e.g.
You can then query the exception object further if you want, e.g.
最好的提及方式是:测试方法上方的
[ExpectedException(typeof(ApplicationException))]
。Best way to mention is:
[ExpectedException(typeof(ApplicationException))]
above the test method.为什么不能将模拟方法调用包含在 try/catch 块中并捕获抛出的特定异常?
Why can't you enclose the mocked method call in a try/catch block and catch the specific exception being thrown?