Changeset 14996 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2019-04-17T21:08:19+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/MainApplicationTest.java
r14994 r14996 167 167 final String old = System.getProperty("josm.plugins"); 168 168 try { 169 System.setProperty("josm.plugins", "buildings_tools, utilsplugin2");169 System.setProperty("josm.plugins", "buildings_tools,log4j"); 170 170 SplashProgressMonitor monitor = new SplashProgressMonitor("foo", e -> { 171 171 // Do nothing … … 175 175 PluginHandlerTestIT.downloadPlugins(Arrays.asList( 176 176 newPluginInformation("buildings_tools"), 177 newPluginInformation(" utilsplugin2")));177 newPluginInformation("log4j"))); 178 178 plugins = MainApplication.updateAndLoadEarlyPlugins(null, monitor); 179 179 } 180 180 assertEquals(2, plugins.size()); 181 assertNotNull(PluginHandler.getPlugin(" utilsplugin2"));181 assertNotNull(PluginHandler.getPlugin("log4j")); 182 182 assertNull(PluginHandler.getPlugin("buildings_tools")); 183 183 MainApplication.loadLatePlugins(null, monitor, plugins);
Note:
See TracChangeset
for help on using the changeset viewer.