Changeset 31417 in osm for applications/editors/josm/plugins/mapillary/test
- Timestamp:
- 2015-07-30T13:17:43+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 3 added
- 1 deleted
- 1 edited
-
AbstractTest.java (added)
-
AllTests.java (added)
-
ImportTest.java (added)
-
ImportedImageTest.java (deleted)
-
util/TestUtil.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/util/TestUtil.java
r31347 r31417 1 1 package org.openstreetmap.josm.plugins.mapillary.util; 2 3 import java.io.File; 2 4 3 5 import org.openstreetmap.josm.Main; 4 6 import org.openstreetmap.josm.data.projection.Projections; 7 import org.openstreetmap.josm.plugins.PluginException; 8 import org.openstreetmap.josm.plugins.PluginInformation; 5 9 import org.openstreetmap.josm.plugins.mapillary.MapillaryLayer; 10 import org.openstreetmap.josm.plugins.mapillary.MapillaryPlugin; 6 11 import org.openstreetmap.josm.tools.I18n; 7 12 … … 30 35 I18n.set(Main.pref.get("language", "en")); 31 36 Main.setProjection(Projections.getProjectionByCode("EPSG:3857")); // Mercator 32 37 try { 38 new MapillaryPlugin(new PluginInformation(new File("/home/nokutu/.josm/plugins/Mapillary.jar"))); 39 } catch (PluginException e) { 40 // TODO Auto-generated catch block 41 e.printStackTrace(); 42 } 33 43 isInitialized = true; 34 44 }
Note:
See TracChangeset
for help on using the changeset viewer.
