Changeset 32545 in osm for applications/editors/josm/plugins/opendata/test/unit
- Timestamp:
- 2016-07-03T22:13:58+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReaderTest.java
r32355 r32545 26 26 @Rule 27 27 public JOSMTestRules rules = new JOSMTestRules().preferences(); 28 28 29 29 private static AbstractDataSetHandler newHandler(final String epsgCode) { 30 30 AbstractDataSetHandler handler = new AbstractDataSetHandler() { … … 33 33 return true; 34 34 } 35 35 36 @Override 36 37 public void updateDataSet(DataSet ds) { … … 42 43 return handler; 43 44 } 44 45 45 46 /** 46 47 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/9592">#9592</a> -
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/geographic/ShpReaderTest.java
r32360 r32545 31 31 32 32 /** 33 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/12714">#12714/a> 33 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/12714">#12714</a> 34 34 * @throws IOException if an error occurs during reading 35 35 */ … … 55 55 } 56 56 } 57 57 58 58 /** 59 59 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/8309">#8309</a> -
applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/tabular/CsvReaderTest.java
r32355 r32545 29 29 @Rule 30 30 public JOSMTestRules rules = new JOSMTestRules().preferences(); 31 31 32 32 private static AbstractDataSetHandler newHandler(final String epsgCode) { 33 33 AbstractDataSetHandler handler = new AbstractDataSetHandler() { … … 36 36 return true; 37 37 } 38 38 39 @Override 39 40 public void updateDataSet(DataSet ds) { … … 45 46 return true; 46 47 } 48 47 49 @Override 48 50 public LatLon getCoor(EastNorth en, String[] fields) { … … 52 54 return handler; 53 55 } 54 56 55 57 /** 56 58 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/10214">#10214</a> … … 63 65 } 64 66 } 65 67 66 68 /** 67 69 * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/8805">#8805</a>
Note:
See TracChangeset
for help on using the changeset viewer.