AnnotationMetadata returns Class values by default (again), allowing for explicit retrieval of String class names where preferred (SPR-5827)

This commit is contained in:
Juergen Hoeller
2009-11-11 19:24:43 +00:00
parent bbd7fb3969
commit a06adf7203

View File

@@ -79,8 +79,11 @@ public class AnnotationMetadataTests extends TestCase {
assertEquals("myScope", scopeAttrs.get("value"));
Map<String, Object> specialAttrs = metadata.getAnnotationAttributes(SpecialAttr.class.getName());
assertEquals(2, specialAttrs.size());
assertEquals(String.class.getName(), specialAttrs.get("clazz"));
assertEquals(String.class, specialAttrs.get("clazz"));
assertEquals(Thread.State.NEW, specialAttrs.get("state"));
Map<String, Object> specialAttrsString = metadata.getAnnotationAttributes(SpecialAttr.class.getName(), true);
assertEquals(String.class.getName(), specialAttrsString .get("clazz"));
assertEquals(Thread.State.NEW, specialAttrsString.get("state"));
}
private void doTestMethodAnnotationInfo(AnnotationMetadata classMetadata) {