PluginParameter param = new PluginParameter(model, view);
// adding system functions--------
System.out.println("Before creation of notepad plugin");
new NotepadPlugin().install(param);
System.out.println("After creation of notepad plugin");
view.quit();
} catch (Throwable ex) {
Assert.assertTrue(ex.getMessage(), false);
}
}
});