File tree Expand file tree Collapse file tree 1 file changed +3
-20
lines changed
spring-core/src/test/java/org/springframework/core/annotation Expand file tree Collapse file tree 1 file changed +3
-20
lines changed Original file line number Diff line number Diff line change 25
25
import org .junit .jupiter .api .Nested ;
26
26
import org .junit .jupiter .api .Test ;
27
27
28
+ import org .springframework .core .annotation .AnnotatedElementUtilsTests .StandardContainerWithMultipleAttributes ;
29
+ import org .springframework .core .annotation .AnnotatedElementUtilsTests .StandardRepeatablesWithContainerWithMultipleAttributesTestCase ;
30
+
28
31
import static org .assertj .core .api .Assertions .assertThat ;
29
32
import static org .assertj .core .api .Assertions .assertThatExceptionOfType ;
30
33
import static org .assertj .core .api .Assertions .assertThatIllegalArgumentException ;
@@ -256,26 +259,6 @@ static class SingleStandardRepeatableTestCase {
256
259
static class StandardRepeatablesTestCase {
257
260
}
258
261
259
- @ Retention (RetentionPolicy .RUNTIME )
260
- @interface StandardContainerWithMultipleAttributes {
261
-
262
- StandardRepeatableWithContainerWithMultipleAttributes [] value ();
263
-
264
- String name () default "" ;
265
- }
266
-
267
- @ Retention (RetentionPolicy .RUNTIME )
268
- @ Repeatable (StandardContainerWithMultipleAttributes .class )
269
- @interface StandardRepeatableWithContainerWithMultipleAttributes {
270
-
271
- String value () default "" ;
272
- }
273
-
274
- @ StandardRepeatableWithContainerWithMultipleAttributes ("a" )
275
- @ StandardRepeatableWithContainerWithMultipleAttributes ("b" )
276
- static class StandardRepeatablesWithContainerWithMultipleAttributesTestCase {
277
- }
278
-
279
262
@ ExplicitContainer ({ @ ExplicitRepeatable ("a" ), @ ExplicitRepeatable ("b" ) })
280
263
static class ExplicitRepeatablesTestCase {
281
264
}
You can’t perform that action at this time.
0 commit comments