File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
spring-javaformat/spring-javaformat-checkstyle/src/test/resources/source Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2017-2019 the original author or authors.
2
+ * Copyright 2017-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
14
14
* limitations under the License.
15
15
*/
16
16
17
+ import org .junit .jupiter .api .AfterAll ;
18
+ import org .junit .jupiter .api .AfterEach ;
19
+ import org .junit .jupiter .api .BeforeAll ;
20
+ import org .junit .jupiter .api .BeforeEach ;
17
21
import org .junit .jupiter .api .Test ;
22
+ import org .junit .jupiter .api .TestTemplate ;
18
23
19
24
/**
20
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 () {
43
48
44
49
}
@@ -58,7 +63,7 @@ private static void privateAfterAll() {
58
63
59
64
}
60
65
61
- @ BeforeEach
66
+ @ AfterEach
62
67
private void privateAfterEach () {
63
68
64
69
}
You can’t perform that action at this time.
0 commit comments