NUnit:如果花费太长时间则中止测试
有没有一种好的简单方法可以让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 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.