如何在 Eclipse 中设置主要 Java 类型?

发布于 2024-11-05 11:41:16 字数 209 浏览 0 评论 0 原文

如何在 Eclipse(最新)中设置主要 Java 类型?

我有一个主要客户端,然后是一堆练习各种代码路径和条件的单元测试。通常我想根据我正在开发的功能来调试或执行单元测试。然而,当老板出现时,我想快速运行我的主驱动程序类,而不需要寻找和啄食 .java 文件,然后点击调试。

有没有一种简单的方法来设置/更改主要类型?人们通常如何处理在 Eclipse 中运行单元测试?

How do I set the main Java type in Eclipse (latest)?

I have a main client, and then a bunch of unit tests that exercise various code paths and conditions. Normally I'd like to debug or execute the unit tests depending on the feature I'm developing. However, when the boss shows up, I'd like to quickly run my main driver class without hunting and pecking for the .java file, then hitting debug.

Is there an easy way to set/change the main type? How do folks normally handle running unit tests in Eclipse?

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

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

发布评论

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

评论(4

微凉 2024-11-12 11:41:16

单击运行/调试图标中的箭头,然后选择底部的组织收藏夹,并为以后不想再摸索的任何内容设置收藏夹。

对于单元测试,我只是像 Eclipse 中的其他测试一样运行它们。我还在我的 Ant 脚本中包含了一个测试目标。

Click on the arrow in the run/debug icon and select Organize Favorites at the bottom and set favorites for anything you don't want to fumble around for later.

For unit tests, I just run them like anything else in Eclipse. I also include a test target in my Ant scripts.

送舟行 2024-11-12 11:41:16

对于单元测试:

您可以制作测试套件,以便按功能捆绑它们。这样你只需要运行与你的功能相关的测试套件。

有多个启动配置:

只需从“运行”菜单中转到“运行配置...”或“调试配置...”并创建所需的配置。下次您想要运行它们时,再次进入该菜单,选择它并单击运行/调试;

为了获得时间,您可以转到按键配置并设置“运行...”或“调试...”子菜单的快捷方式。

For unit tests :

You can make test suite so to bundle them by feature. This way you just need to run the test suite related to your feature.

Having several launch configuration :

Just go Run Configuration... or Debug Configuration ... from Run menu and create the configuration you want. Next time you'll want to Run them go again to that menu select it and click Run/Debug;

To gain time you can go to Keys configuration and set at shortcut to "Run..." or "Debug..." submenu.

习ぎ惯性依靠 2024-11-12 11:41:16

右键单击您的测试文件夹并选择“运行为... -> JUnit 测试”?

Right click on your test folder and "Run as ... -> JUnit test"?

云淡月浅 2024-11-12 11:41:16

运行 >运行配置... 为您拥有的 java 应用程序类型创建一个新的运行配置,并通过选项指定主类。

这些配置将在运行方式按钮下拉列表中提供。

From Run > Run Configuration... Create a new Run Configuration for the type of java application you have and the options let you specify the main class.enter image description here

And these configurations will be available in the Run As button dropdown.

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