Eclipse function/plugin that finds corresponding junit class?(找到相应junit类的Eclipse函数/插件?)
问题描述
我一直在寻找 Eclipse 的一个特性,它可以让您右键单击主源类并找到相应的 JUnit 类,而无需浏览项目的测试类.我正在使用 Mylyn,它有助于减少混乱,但如果有一个自动执行查找的功能会更容易.
I've been searching high and low for an Eclipse feature that lets you right-click on a main source class and find the corresponding JUnit class(es), without me having to navigate through the test classes of my project. I am using Mylyn which helps reduce the clutter but it would be much easier if there was a feature that performs a find automagically.
我遵循 Maven 标准目录布局(/src/main/java
、/src/test/java
等).我所有的测试类都命名为*Test
.我想这可能是可行的,并且可能已经存在.
I am following the Maven standard directory layout (/src/main/java
, /src/test/java
, etc.). And all of my test classes are named *Test
. I'd imagine this can be feasibly implemented and probably already exists.
Eclipse 中是否有一个函数或插件可以为给定的主类找到相应的 JUnit 测试类?
Is there a function or plugin in Eclipse that finds the corresponding JUnit test classes for a given main class?
推荐答案
moreUnit插件可能适合你.
能力(来自其网站):
- 装饰有测试用例的类.
- 在编辑器中标记正在测试的方法.
- 通过菜单或快捷方式跳转到编辑器中的测试用例/测试方法.
- 重命名类/方法和moreUnit也会重命名相应的测试代码.
- 移动类和 moreUnit 将移动相应的测试.
- 通过菜单或快捷方式为编辑器中光标位置下的方法生成测试方法存根.
这篇关于找到相应junit类的Eclipse函数/插件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找到相应junit类的Eclipse函数/插件?
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01