如何查找直接或间接使用给定 Java 方法的 Junit 测试

发布于 2024-08-24 09:14:42 字数 299 浏览 3 评论 0原文

假设Eclipse工作区中有Java项目和Junit项目。所有单元测试都位于 Junit 项目中,并依赖于应用程序 Java 项目。当更改 Java 方法时,我需要找到直接或间接使用该方法的单元测试,以便在检查源代码管理之前可以在我的 PC 本地运行相应的测试。我不想运行整个 junit 项目,因为它需要时间。

我可以使用 Eclipse 调用层次结构来逐一展开调用者方法,直到找到测试方法。但对于一个包含超过 100 万行源代码的项目,深入挖掘调用层次结构也需要时间。

调用层次结构视图中的搜索范围似乎没有多大帮助。

感谢任何帮助。

Assume there are Java project and Junit project in an Eclipse workspace. And All the unit tests are located in the Junit project and dependent on the application Java project. When making changes to a Java method, I need to find the unit tests that are using the method directly or indirectly, so that I can run the corresponding tests locally in my PC before checking into source control. I don't want to run the entire junit project since it takes time.

I could use Eclipse call hierarchy to expand caller methods one by one until I find a test method. But for a project including more than 1 million lines of source code, digging down the call hierarchy takes time too.

The search scope within call hierarchy view doesn't seem help much.

Appreciate any help.

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

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

发布评论

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

评论(2

伴梦长久 2024-08-31 09:14:42

为什么不右键单击更改的方法并选择“参考->工作区(或工作集,如果配置正确)”。

这应该会为您提供一个调用您刚刚更改的方法的列表。搜索结果可以按包或项目进行组织。选择项目组织并展开 JUnit 项目,您正在寻找的内容可能是那里唯一的东西。

Why not right click on the changed method and select "References->Workspace (or Working Set if configured properly)".

This should give you a list of methods invoking the one you just changed. The search results can be organized by package or project. Select project organization and expand the JUnit project and what you are looking for will likely be the only thing there.

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