Changeset 9458 in josm for trunk/test/unit/org/openstreetmap/josm/plugins
- Timestamp:
- 2016-01-15T02:11:39+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerTest.java
r9429 r9458 12 12 13 13 import org.junit.BeforeClass; 14 import org.junit.Rule; 14 15 import org.junit.Test; 16 import org.junit.rules.Timeout; 15 17 import org.openstreetmap.josm.JOSMFixture; 16 18 import org.openstreetmap.josm.Main; … … 21 23 */ 22 24 public class PluginHandlerTest { 25 26 /** 27 * Global timeout applied to all test methods. 28 */ 29 @Rule 30 public Timeout globalTimeout = Timeout.seconds(10*60); 23 31 24 32 /** … … 33 41 * Test that available plugins rules can be loaded. 34 42 */ 35 @Test (timeout = 10*60*1000)43 @Test 36 44 public void testValidityOfAvailablePlugins() { 37 45 // Download complete list of plugins
Note:
See TracChangeset
for help on using the changeset viewer.