IntelliJ 运行/调试配置中的变量

发布于 2024-09-17 10:35:59 字数 352 浏览 8 评论 0原文

我想在 IntelliJ 中为 JUnit 设置运行/调试配置。我知道如何设置它来运行特定的、特定的或特定的方法。我想知道是否有一种方法可以设置配置,以便它将运行当前打开的 Class 文件或当前选择的测试方法。我想我会把这样的东西放在运行/调试配置对话框的Class字段中:

my.package.tests.${currentTest}

或者类似的东西。有没有办法完成此操作,这样我就不必为我想要运行的每个测试类进行运行/调试配置?

I am wanting to set up a Run/Debug Configuration in IntelliJ for JUnit. I know how to set it up to run a specific package, a specific class, or a specific method. I was wondering if there was a way to set up the configurations so it will run the currently opened Class file or the currently selected test method. I would imagine I would put something like this in the Class field of the Run/Debug Configurations dialog box:

my.package.tests.${currentTest}

or something like that. Is there a way to accomplish this so I don't have to make a Run/Debug Configuration for each test class I want to run?

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

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

发布评论

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

评论(2

放我走吧 2024-09-24 10:36:05

您可以使用右键单击> “run testYourtest()”或在键盘映射中定义为“运行上下文配置”的快捷方式。

通常是 ctrl + shift + F10

You can either use the right-click > "run testYourtest()" or the shortcut define in the keymap as "Run context configuration".

Usually it's ctrl + shift + F10.

美人迟暮 2024-09-24 10:36:04

如果您需要对所有测试进行特定设置,您可以更改默认设置,例如 add -ea。这样您就不需要为每个测试进行配置。

顺便说一句:您可以通过首先选择包来运行包中的所有测试。有时最好运行一组测试来检查您是否没有更改一些意外的内容。

If you need specific settings for all you tests you can change the defaults e.g. add -ea. This way you don't need a configuration for each test.

BTW: YoU can run all the tests in a package, by selecting the package first. Sometimes it is better to run a group of tests to check you haven't changed something unintended.

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