@@ -204,7 +204,7 @@ void metaAnnotationOverridesUsingStandardAnnotationMetadata() {
204
204
}
205
205
206
206
@ Test
207
- void metaAnnotationOverridesUsingAnnotationMetadataReadingVisitor () throws Exception {
207
+ void metaAnnotationOverridesUsingSimpleAnnotationMetadata () throws Exception {
208
208
MetadataReaderFactory metadataReaderFactory = new SimpleMetadataReaderFactory ();
209
209
MetadataReader metadataReader = metadataReaderFactory .getMetadataReader (ComposedConfigurationWithAttributeOverridesClass .class .getName ());
210
210
AnnotationMetadata metadata = metadataReader .getAnnotationMetadata ();
@@ -226,7 +226,7 @@ void multipleAnnotationsWithIdenticalAttributeNamesUsingStandardAnnotationMetada
226
226
}
227
227
228
228
@ Test // SPR-11649
229
- void multipleAnnotationsWithIdenticalAttributeNamesUsingAnnotationMetadataReadingVisitor () throws Exception {
229
+ void multipleAnnotationsWithIdenticalAttributeNamesUsingSimpleAnnotationMetadata () throws Exception {
230
230
MetadataReaderFactory metadataReaderFactory = new SimpleMetadataReaderFactory ();
231
231
MetadataReader metadataReader = metadataReaderFactory .getMetadataReader (NamedAnnotationsClass .class .getName ());
232
232
AnnotationMetadata metadata = metadataReader .getAnnotationMetadata ();
@@ -240,7 +240,7 @@ void composedAnnotationWithMetaAnnotationsWithIdenticalAttributeNamesUsingStanda
240
240
}
241
241
242
242
@ Test // SPR-11649
243
- void composedAnnotationWithMetaAnnotationsWithIdenticalAttributeNamesUsingAnnotationMetadataReadingVisitor () throws Exception {
243
+ void composedAnnotationWithMetaAnnotationsWithIdenticalAttributeNamesUsingSimpleAnnotationMetadata () throws Exception {
244
244
MetadataReaderFactory metadataReaderFactory = new SimpleMetadataReaderFactory ();
245
245
MetadataReader metadataReader = metadataReaderFactory .getMetadataReader (NamedComposedAnnotationClass .class .getName ());
246
246
AnnotationMetadata metadata = metadataReader .getAnnotationMetadata ();
@@ -254,7 +254,7 @@ void inheritedAnnotationWithMetaAnnotationsWithIdenticalAttributeNamesUsingStand
254
254
}
255
255
256
256
@ Test
257
- void inheritedAnnotationWithMetaAnnotationsWithIdenticalAttributeNamesUsingAnnotationMetadataReadingVisitor () throws Exception {
257
+ void inheritedAnnotationWithMetaAnnotationsWithIdenticalAttributeNamesUsingSimpleAnnotationMetadata () throws Exception {
258
258
MetadataReaderFactory metadataReaderFactory = new SimpleMetadataReaderFactory ();
259
259
MetadataReader metadataReader = metadataReaderFactory .getMetadataReader (NamedComposedAnnotationExtended .class .getName ());
260
260
AnnotationMetadata metadata = metadataReader .getAnnotationMetadata ();
0 commit comments