JUnit、测试和线程
当我连续运行多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这一切都在一个线程上。您没有说明如何调用测试,但例如,运行 TestSuite 将按顺序运行套件中的所有测试。
如果您想要并行执行,TestNG 支持同时运行测试,JUnitPerf 和 GroboUtils。
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.
JUnit 4.0 支持并发测试
JUnit 4.0 supports concurrent tests