Changeset 9189 in josm
- Timestamp:
- 2015-12-28T11:26:55+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionTest.java
r9140 r9189 25 25 testProj(Projections.getProjectionByCode("EPSG:4326")); // WGS 84 26 26 testProj(Projections.getProjectionByCode("EPSG:3857")); // Mercator 27 if (!"yes".equals(System.getProperty("suppressPermanentFailure"))) { 28 testProj(Projections.getProjectionByCode("EPSG:3301")); // Lambert EST 29 } 27 testProj(Projections.getProjectionByCode("EPSG:3301")); // Lambert EST 30 28 31 29 for (int i = 0; i <= 3; ++i) { … … 44 42 } 45 43 46 if (!"yes".equals(System.getProperty("suppressPermanentFailure"))) { 47 for (String c : Arrays.asList("2969", "2970", "2972", "2973")) { 48 testProj(Projections.getProjectionByCode("EPSG:"+c)); // UTM France DOM 49 } 44 for (String c : Arrays.asList("2969", "2970", "2972", "2973")) { 45 testProj(Projections.getProjectionByCode("EPSG:"+c)); // UTM France DOM 50 46 } 51 47
Note:
See TracChangeset
for help on using the changeset viewer.