assertFalse(info.isAnnotationPresent(SimpleAnnotation.class.getName()));
ClassInfo componentInfo = (ClassInfo)((ArrayInfo)info).getComponentType();
AnnotationValue[] annotations = componentInfo.getAnnotations();
assertEquals(2, annotations.length);
AnnotationValue anotherAnnotation = getAnnotationCheckTypeAndName(componentInfo, AnotherAnnotation.class.getName());
AnnotationValue simpleAnnotation = getAnnotationCheckTypeAndName(componentInfo, SimpleAnnotation.class.getName());
HashSet<AnnotationValue> set = new HashSet<AnnotationValue>();
set.add(anotherAnnotation);
set.add(simpleAnnotation);