JUnit、测试和线程

发布于 2024-09-01 10:11:50 字数 74 浏览 5 评论 0原文

当我连续运行多个 JUnit 测试时,JUnit 是否为每次执行创建一个新线程,或者所有内容都包装在一个线程中?

谢谢

when i run multiple JUnit tests in a row, does JUnit create a new thread for each execution or everything is wrapped in a single thread?

Thanks

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

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

发布评论

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

评论(2

负佳期 2024-09-08 10:11:50

这一切都在一个线程上。您没有说明如何调用测试,但例如,运行 TestSuite 将按顺序运行套件中的所有测试。

如果您想要并行执行,TestNG 支持同时运行测试,JUnitPerfGroboUtils

It's all on a single thread. You don't say how you're invoking the tests, but for example, running a TestSuite will run all the tests in the suite sequentially.

If you want parallel execution, TestNG has support for running tests concurrently, as does JUnitPerf and GroboUtils.

蓝天白云 2024-09-08 10:11:50

JUnit 4.0 支持并发测试

JUnit 4.0 supports concurrent tests

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