|
1 | 1 | /*
|
2 |
| - * Copyright 2002-2019 the original author or authors. |
| 2 | + * Copyright 2002-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.
|
@@ -86,7 +86,7 @@ void directStrategyOnClassHierarchyScansInCorrectOrder() {
|
86 | 86 | }
|
87 | 87 |
|
88 | 88 | @Test
|
89 |
| - void inheritedAnnotationsStrategyOnClassWhenNotAnnoatedScansNone() { |
| 89 | + void inheritedAnnotationsStrategyOnClassWhenNotAnnotatedScansNone() { |
90 | 90 | Class<?> source = WithNoAnnotations.class;
|
91 | 91 | assertThat(scan(source, SearchStrategy.INHERITED_ANNOTATIONS)).isEmpty();
|
92 | 92 | }
|
@@ -137,7 +137,7 @@ void inheritedAnnotationsStrategyOnClassWhenHasAnnotationOnBothClassesIncudesOnl
|
137 | 137 | }
|
138 | 138 |
|
139 | 139 | @Test
|
140 |
| - void superclassStrategyOnClassWhenNotAnnoatedScansNone() { |
| 140 | + void superclassStrategyOnClassWhenNotAnnotatedScansNone() { |
141 | 141 | Class<?> source = WithNoAnnotations.class;
|
142 | 142 | assertThat(scan(source, SearchStrategy.SUPERCLASS)).isEmpty();
|
143 | 143 | }
|
@@ -179,7 +179,7 @@ void superclassStrategyOnClassHierarchyScansInCorrectOrder() {
|
179 | 179 | }
|
180 | 180 |
|
181 | 181 | @Test
|
182 |
| - void typeHierarchyStrategyOnClassWhenNotAnnoatedScansNone() { |
| 182 | + void typeHierarchyStrategyOnClassWhenNotAnnotatedScansNone() { |
183 | 183 | Class<?> source = WithNoAnnotations.class;
|
184 | 184 | assertThat(scan(source, SearchStrategy.TYPE_HIERARCHY)).isEmpty();
|
185 | 185 | }
|
@@ -222,7 +222,7 @@ void typeHierarchyStrategyOnClassHierarchyScansInCorrectOrder() {
|
222 | 222 | }
|
223 | 223 |
|
224 | 224 | @Test
|
225 |
| - void directStrategyOnMethodWhenNotAnnoatedScansNone() { |
| 225 | + void directStrategyOnMethodWhenNotAnnotatedScansNone() { |
226 | 226 | Method source = methodFrom(WithNoAnnotations.class);
|
227 | 227 | assertThat(scan(source, SearchStrategy.DIRECT)).isEmpty();
|
228 | 228 | }
|
@@ -263,7 +263,7 @@ void directStrategyOnMethodHierarchyScansInCorrectOrder() {
|
263 | 263 | }
|
264 | 264 |
|
265 | 265 | @Test
|
266 |
| - void inheritedAnnotationsStrategyOnMethodWhenNotAnnoatedScansNone() { |
| 266 | + void inheritedAnnotationsStrategyOnMethodWhenNotAnnotatedScansNone() { |
267 | 267 | Method source = methodFrom(WithNoAnnotations.class);
|
268 | 268 | assertThat(scan(source, SearchStrategy.INHERITED_ANNOTATIONS)).isEmpty();
|
269 | 269 | }
|
@@ -304,7 +304,7 @@ void inheritedAnnotationsStrategyOnMethodHierarchyScansInCorrectOrder() {
|
304 | 304 | }
|
305 | 305 |
|
306 | 306 | @Test
|
307 |
| - void superclassStrategyOnMethodWhenNotAnnoatedScansNone() { |
| 307 | + void superclassStrategyOnMethodWhenNotAnnotatedScansNone() { |
308 | 308 | Method source = methodFrom(WithNoAnnotations.class);
|
309 | 309 | assertThat(scan(source, SearchStrategy.SUPERCLASS)).isEmpty();
|
310 | 310 | }
|
@@ -346,7 +346,7 @@ void superclassStrategyOnMethodHierarchyScansInCorrectOrder() {
|
346 | 346 | }
|
347 | 347 |
|
348 | 348 | @Test
|
349 |
| - void typeHierarchyStrategyOnMethodWhenNotAnnoatedScansNone() { |
| 349 | + void typeHierarchyStrategyOnMethodWhenNotAnnotatedScansNone() { |
350 | 350 | Method source = methodFrom(WithNoAnnotations.class);
|
351 | 351 | assertThat(scan(source, SearchStrategy.TYPE_HIERARCHY)).isEmpty();
|
352 | 352 | }
|
|
0 commit comments