NUnit:如果花费太长时间则中止测试

发布于 2024-09-13 23:21:11 字数 91 浏览 1 评论 0原文

有没有一种好的简单方法可以让 NUnit 终止一个花费超过指定时间的测试?

理想情况下,它不仅会杀死运行测试的应用程序域,还会杀死测试启动的任何子进程。

Is there a nice and simple way to get NUnit to kill a test that takes more than a specified amount of time?

Ideally it would not only kill the app domain in which the test was running, but also any child processes the test started.

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

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

发布评论

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

评论(1

任谁 2024-09-20 23:21:11

如果您使用的是 NUnit 2.5,则可以使用 Timeout 属性来失败指定时间后进行测试。不幸的是,您需要自己清理所有资源 - 例如,在 TearDown 方法中检查进程是否正在运行并终止它们等。

If you are using NUnit 2.5 you can use the Timeout attribute to fail the test after specified amount of time. Unfortunately you will need to clean all the resources yourself - e.g. in the TearDown method check if the processes are running and kill them etc.

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