如何在没有 Maven 的情况下同时运行 Eclipse Java 项目的所有 JUnit 测试?
我在 Eclipse 中有一个小型 Java 项目。我为项目中的每个类都有一类 JUnit 测试。我正在使用 JUnit 4,这不是 Maven 项目。
有没有一种简单的方法可以告诉 Eclipse 同时运行所有测试类中的所有测试?
I have a small Java project in Eclipse. I have a class of JUnit tests for each class in the project. I'm using JUnit 4, and this is not a maven project.
Is there an easy way to tell Eclipse to run all tests in all test classes at once?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
右键单击源文件夹,然后
运行为...> JUnit 测试
。Right click on a source folder then
Run As… > JUnit Test
.选择包含所有测试类的源目录,右键单击,选择“Run as...”并选择JUnit test。
Select the source directory containing all test classes, right-click, select "Run as..." and select JUnit test.