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 11/*
2- * Copyright 2017-2019 the original author or authors.
2+ * Copyright 2017-2020 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
1414 * limitations under the License.
1515 */
1616
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 ;
1721import org .junit .jupiter .api .Test ;
22+ import org .junit .jupiter .api .TestTemplate ;
1823
1924/**
2025 * Test with bad modifiers.
@@ -38,7 +43,7 @@ public static void publicAfterAll() {
3843
3944 }
4045
41- @ BeforeEach
46+ @ AfterEach
4247 public void publicAfterEach () {
4348
4449 }
@@ -58,7 +63,7 @@ private static void privateAfterAll() {
5863
5964 }
6065
61- @ BeforeEach
66+ @ AfterEach
6267 private void privateAfterEach () {
6368
6469 }
You can’t perform that action at this time.
0 commit comments