停止对安装失败运行测试

发布于 2024-08-03 11:13:17 字数 146 浏览 3 评论 0原文

我们正在使用 NUnit 来运行大量集成测试。

所有这些测试共享一个基类,该基类作为测试夹具设置方法,准备其余测试所需的数据。

如果测试夹具设置出现故障,是否有任何方法可以停止运行测试?

现在它会等到所有测试因相同的设置错误而失败

We are using NUnit to run a large number of integration tests.

All these tests share a base class, which as a test fixture setup method that preps the data needed for the rest of the tests.

Is there any way to stop running tests if there is a failure in the test fixture setup?

Right now it waits until all the tests fail with the same setup error

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

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

发布评论

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

评论(1

夜无邪 2024-08-10 11:13:17

如果我理解正确的话,如果遇到失败,您不能在 [Setup] 方法或 [SetupFixture] 类中的某个地方抛出异常吗?

测试运行程序仍然会报告好像所有测试都失败了,但不要让这让您误以为它们已经运行了。 NUnit 一旦遇到异常就会有效地终止。

If I understand you correctly can't you just throw an exception somewhere in your [Setup] method or [SetupFixture] class if you encountered a failure?

The test runner will still report as if all of your tests failed, but don't let that confuse you into thinking they were run. NUnit will effectively terminate as soon as it encounters the exception.

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