如何在 IntelliJ IDEA 中为 JUnit 指定应使用哪个 @Tag

2022-01-18 00:00:00 unit-testing tags intellij-idea java junit5

有没有办法从 IntelliJ 的 JUnit5 Runner 的构建中指定只应测试具有特定 @Tag 的测试方法(或相反,应执行除具有特定 @Tag 的测试之外的所有测试)?

Is there a way to specify from the build in JUnit5 Runner of IntelliJ that only test methods with specific @Tag should be tested (or the opposite, that all tests except those with a specific @Tag, should be executed)?

我知道如何使用 maven 来实现,但是仅使用 IntelliJ UI 是否可行?

I know how to do it with maven, but is it possible with just the IntelliJ UI?

最好的问候,迪特

推荐答案

With https://youtrack.jetbrains.com/issue/IDEA-163481 已修复,现在可以从 IJ 2018.1 开始 - 有关详细信息,请参阅 @Nicolau 的答案.

With https://youtrack.jetbrains.com/issue/IDEA-163481 fixed, it is now possible since IJ 2018.1 -- for details see @Nicolau 's answer.

相关文章