// registering a global plugin
@Test
public void testGlobalPluginRegistration() throws Exception {
binLoader = new TestClassloaderWithRewriting("metaNotExist", true);
String t = "simple.Basic";
ReloadEventProcessorPlugin repp = new ReloadEventProcessorPlugin() {
public void reloadEvent(String typename, Class<?> clazz, String encodedTimestamp) {
System.out.println("Plugin: reloadEvent(" + typename + "," + clazz.getName() + "," + encodedTimestamp + ")");
}
public boolean shouldRerunStaticInitializer(String typename, Class<?> clazz, String encodedTimestamp) {