Changeset 15396 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2019-10-01T00:07:42+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/layer/GpxLayerTest.java
r14337 r15396 11 11 import java.util.Collection; 12 12 import java.util.HashMap; 13 import java.util.Locale; 13 14 import java.util.TimeZone; 14 15 15 16 import javax.swing.JScrollPane; 16 17 18 import org.junit.BeforeClass; 17 19 import org.junit.Rule; 18 20 import org.junit.Test; … … 42 44 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 43 45 public JOSMTestRules test = new JOSMTestRules().main().projection().i18n(); 46 47 /** 48 * Setup test 49 */ 50 @BeforeClass 51 public static void beforeClass() { 52 // Make sure we don't rely on a specific country, for distance units 53 Locale.setDefault(Locale.ENGLISH); 54 } 44 55 45 56 private static String getHtml(GpxLayer layer) {
Note:
See TracChangeset
for help on using the changeset viewer.