}
public void testGetPluginsAfterAddingNewPlugin() throws FileNotFoundException, IOException {
final int pluginCount = pluginService.getPluginDescriptions().length;
final PluginStore store = new PluginStore();
store.createPlugin(new PluginDescription("foo", "new one"), new FileInputStream(FILE2));
assertEquals(1 + pluginCount, pluginService.getPluginDescriptions().length);
}