We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TestTemplate
TestsShouldNotBePublic
1 parent ced18fc commit a5439b6Copy full SHA for a5439b6
src/main/java/org/openrewrite/java/testing/cleanup/TestsShouldNotBePublic.java
@@ -172,6 +172,7 @@ private boolean hasJUnit5MethodAnnotation(J.MethodDeclaration method) {
172
TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.api.RepeatedTest") ||
173
TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.params.ParameterizedTest") ||
174
TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.api.TestFactory") ||
175
+ TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.api.TestTemplate") ||
176
TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.api.AfterEach") ||
177
TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.api.BeforeEach") ||
178
TypeUtils.isOfClassType(a.getType(), "org.junit.jupiter.api.AfterAll") ||
0 commit comments