数据驱动单元测试 - 以编程方式跳过行

发布于 2024-12-04 12:52:55 字数 57 浏览 1 评论 0原文

有没有办法以编程方式跳过数据驱动单元测试中的行?我想在构建服务器上运行所有行,但在调试时只运行一行。

Is there a way to programmatically skip rows in a data drive unit test? I want to run all rows on our build server, but only one row when debugging.

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

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

发布评论

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

评论(1

梦里°也失望 2024-12-11 12:52:55

您可以做的是生成一个仅在一行上执行其操作的测试。然后创建另一个单行测试,称为单行测试。将此作为您实际的数据驱动测试。

在夜间构建过程中包含数据驱动(骨架)测试,并在调试期间使用单行测试。

What you could do is generate a test that only performs its action on one row. Then create another test that is a single liner, calling the single row test. Make this your actual data-driven test.

Include the data-driven (skeleton) tests in your nightly build process and use the single row one during debugging.

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