Changeset 9458 in josm for trunk/test/performance/org/openstreetmap/josm/data/osm
- Timestamp:
- 2016-01-15T02:11:39+01:00 (9 years ago)
- Location:
- trunk/test/performance/org/openstreetmap/josm/data/osm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/performance/org/openstreetmap/josm/data/osm/KeyValuePerformanceTest.java
r8632 r9458 11 11 import org.junit.Before; 12 12 import org.junit.BeforeClass; 13 import org.junit.Rule; 13 14 import org.junit.Test; 15 import org.junit.rules.Timeout; 14 16 import org.openstreetmap.josm.JOSMFixture; 15 17 import org.openstreetmap.josm.PerformanceTestUtils; … … 31 33 32 34 /** 35 * Global timeout applied to all test methods. 36 */ 37 @Rule 38 public Timeout globalTimeout = Timeout.seconds(15*60); 39 40 /** 33 41 * Prepare the test. 34 42 */ -
trunk/test/performance/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRendererPerformanceTest.java
r8510 r9458 9 9 10 10 import org.junit.BeforeClass; 11 import org.junit.Rule; 11 12 import org.junit.Test; 13 import org.junit.rules.Timeout; 12 14 import org.openstreetmap.josm.JOSMFixture; 13 15 import org.openstreetmap.josm.data.Bounds; … … 30 32 private static DataSet dsMultipolygon; 31 33 private static DataSet dsCity; 34 35 /** 36 * Global timeout applied to all test methods. 37 */ 38 @Rule 39 public Timeout globalTimeout = Timeout.seconds(15*60); 32 40 33 41 @BeforeClass
Note:
See TracChangeset
for help on using the changeset viewer.