I occasionally have tests that I need to repeat a number of times. My tests are marked with an annotation that is already meta-annotated with @Test, so adding @RepeatedTest causes the tests to be run an additional time, and my IDE complains about the suspicious combination of @Test and @RepeatedTest. While this isn't a pressing issue (since I am not prevented from having my tests be run multiple times), it would be nice to take meta-annotations into account without needing to duplicate the @RepeatedTest feature set.