Changeset 14994 in josm for trunk/test
- Timestamp:
- 2019-04-16T02:42:53+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/MainApplicationTest.java
r14313 r14994 167 167 final String old = System.getProperty("josm.plugins"); 168 168 try { 169 System.setProperty("josm.plugins", "buildings_tools, plastic_laf");169 System.setProperty("josm.plugins", "buildings_tools,utilsplugin2"); 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(" plastic_laf")));177 newPluginInformation("utilsplugin2"))); 178 178 plugins = MainApplication.updateAndLoadEarlyPlugins(null, monitor); 179 179 } 180 180 assertEquals(2, plugins.size()); 181 assertNotNull(PluginHandler.getPlugin(" plastic_laf"));181 assertNotNull(PluginHandler.getPlugin("utilsplugin2")); 182 182 assertNull(PluginHandler.getPlugin("buildings_tools")); 183 183 MainApplication.loadLatePlugins(null, monitor, plugins);
Note:
See TracChangeset
for help on using the changeset viewer.