}
@Test
public void testAnnotationArrayA() throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException, NoSuchFieldException {
ClassReplacer rep = new ClassReplacer();
rep.queueClassForReplacement(AnnotationArrayC.class, AnnotationArrayC1.class);
rep.replaceQueuedClasses();
AnnotationArrayC ns = new AnnotationArrayC();
Class c = AnnotationArrayC.class;
Assert.assertFalse(ns.getClass().isAnnotationPresent(AnnotationArrayA.class));
Field field = c.getDeclaredField("field");