File tree 1 file changed +5
-5
lines changed
junit-jupiter-engine/src/test/java/org/junit/jupiter/engine
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 29
29
30
30
/**
31
31
* Integration tests that explicitly demonstrate the shadowing/overriding
32
- * rules for lifecylce methods in the {@link JupiterTestEngine}.
32
+ * rules for lifecycle methods in the {@link JupiterTestEngine}.
33
33
*
34
34
* @since 5.9
35
35
*/
36
- class LifecycleMethodShadowingTests {
36
+ class LifecycleMethodSupersedingTests {
37
37
38
38
@ Nested
39
- @ DisplayName ("A package-private lifecycle super-method can be combined with " )
39
+ @ DisplayName ("A package-private lifecycle super-method can be superseded by " )
40
40
class PackagePrivateSuperClassTests {
41
41
42
42
@ Nested
@@ -73,7 +73,7 @@ public void beforeEach() {
73
73
}
74
74
75
75
@ Nested
76
- @ DisplayName ("A protected lifecycle super-method can be combined with " )
76
+ @ DisplayName ("A protected lifecycle super-method can be superseded by " )
77
77
class ProtectedSuperClassTests {
78
78
79
79
@ Nested
@@ -98,7 +98,7 @@ public void beforeEach() {
98
98
}
99
99
100
100
@ Nested
101
- @ DisplayName ("A public lifecycle super-method can be combined with " )
101
+ @ DisplayName ("A public lifecycle super-method can be superseded by " )
102
102
class PublicSuperClassTests {
103
103
104
104
@ Nested
You can’t perform that action at this time.
0 commit comments