final AnnotationProcessor annotationProcessor = new AnnotationProcessor(pluginManager);
annotationProcessor.addAnnotationHandler(Init.class, initHandler);
annotationProcessor.addAnnotationHandler(OnClassLoadEvent.class, onClassLoadedHandler);
annotationProcessor.processAnnotations(new SimplePlugin());
context.assertIsSatisfied();
}
}