如何通过单击鼠标在 Eclipse 中运行一组选定的单元测试?
我想创建一个启动器/运行配置,它仅运行选定的一组测试类或选定的一组包中的 JUnit 测试。 现在看来我必须为每个包含我想要运行的测试的包创建单独的运行配置。 我还记得在旧版本的 Eclipse 中这工作过。
是的,我知道:应该组织测试,这样我就不会遇到这个问题,但现在重新组织源文件夹不是一个选择。
我正在使用 Eclipse 3.4.2。
I want to create a launcher/run configuration which runs only the JUnit tests in a selected set of test classes or selected set of packages. Now it looks like I'll have to create separate run configurations for each of my packages containing the tests I want to run. I also have a recollection of this working in older versions of Eclipse.
And yes, I know: The tests should be organized so that I wouldn't have this problem but reorganizing source folders right now is not an option.
I'm using Eclipse 3.4.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以像这样创建 JUnit 测试套件:
You can create a JUnit test suite like this :
您可以为选定的测试添加测试套件。
我会将它们放在一个单独的源文件夹中,否则测试将运行多次,一次针对原始测试,一次针对它所在的每个套件。
You could add a test suite for the selected tests.
I would put them in a separate source folder, as otherwise tests will be run multiple times, once for the original test and once for each suite it is in.
auramo
您选择 TestSuite 并按 Alt+Shift+X、T 或执行
运行-> 运行方式-> JUnit 测试
。auramo
You choose your TestSuite and press Alt+Shift+X, T or do
Run -> Run As -> JUnit Test
.