assertEquals("world", ss[1]);
}
public void testFieldAnn5() {
final AnnotationReader reader = AnnotationReader.getReaderFor(Target.FIELD.getDeclaringClass());
Annotation annotation = reader.getAnnotation("test.TestAnnotations$LongArray", Target.FIELD);
Class type = annotation.annotationType();
assertEquals(TestAnnotations.LongArray.class, type);
TestAnnotations.LongArray ann = (TestAnnotations.LongArray)annotation;
long[] longArr = ann.l();
assertEquals(1l, longArr[0]);