JUnit5-Jupiter: Composed (=“meta”) annotation does not resolve to annotation definition
问题 I defined my own JUnit annotation: @ParameterizedTest @MethodSource("myorg.qa.ccrtesting.DataProviders#standardDataProvider") @Tags({@Tag("ccr"), @Tag("standard")}) public @interface CcrStandardTest { } Then, I was able to use that annotation in my tests: @CcrStandardTest public void E0010_contact_standard (String testData) { ... My run configuration: JVM options: -ea Class: myorg.qa.ccrtesting.ccrstandardtests.CcrStanConTest - This was suggested by the IDE (and is verified to point to the