We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de0db96 commit ef2c527Copy full SHA for ef2c527
spring-javaformat/spring-javaformat-checkstyle/src/test/resources/source/JUnit5BadModifier.java
@@ -15,6 +15,11 @@
15
*/
16
17
import org.junit.jupiter.api.Test;
18
+import org.junit.jupiter.api.BeforeAll;
19
+import org.junit.jupiter.api.BeforeEach;
20
+import org.junit.jupiter.api.AfterAll;
21
+import org.junit.jupiter.api.AfterEach;
22
+import org.junit.jupiter.api.TestTemplate;
23
24
/**
25
* Test with bad modifiers.
@@ -38,7 +43,7 @@ public static void publicAfterAll() {
38
43
39
44
}
40
45
41
- @BeforeEach
46
+ @AfterEach
42
47
public void publicAfterEach() {
48
49
@@ -58,7 +63,7 @@ private static void privateAfterAll() {
58
63
59
64
60
65
61
66
62
67
private void privateAfterEach() {
68
69
0 commit comments