如何使用 nunit 测试异步方法
如何使用 nunit 测试异步方法?
How to test asynchronous methods using nunit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 nunit 测试异步方法?
How to test asynchronous methods using nunit?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用 NUnits 延迟约束
此示例适用于 NUnit 3.6,但早期版本也支持延迟约束,但要查找它,因为语法不同。
You could use NUnits Delayed Constraint
This example is for NUnit 3.6 but earlier versions also support Delayed Constraint, but lookup it up as the syntax is different.
如果您有 .NET 版本 5 的 C# 编译器,则可以使用新的 async 和 wait 关键字。
附上链接:http://simoneb.github。 io/blog/2013/01/19/async-support-in-nunit/
如果你可以使用带有匿名 lambda 函数的闭包,使用线程同步。
例如)
If you have .NET’s version 5 of the C# compiler then you can use new async and await keywords.
attach the link : http://simoneb.github.io/blog/2013/01/19/async-support-in-nunit/
If you can using closure with anonymous lambda function, using thread synchronization.
eg)