Ignore:
Timestamp:
2016-09-02T21:32:04+02:00 (8 years ago)
Author:
donvip
Message:

fix #josm13508 - support CSV format with lat/lon couple in a single column named "Geo Point"

Location:
applications/editors/josm/plugins/opendata/test
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/tabular/CsvReaderTest.java

    r32545 r32898  
    5656
    5757    /**
     58     * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/13508">#13508</a>
     59     * @throws IOException if an error occurs during reading
     60     */
     61    @Test
     62    public void testTicket13508() throws IOException, XMLStreamException, FactoryConfigurationError {
     63        try (InputStream is = TestUtils.getRegressionDataStream(13508, "arrets-de-bus0.csv")) {
     64            NonRegFunctionalTests.testGeneric("#13508", CsvReader.parseDataSet(is, newHandler("EPSG:4326"), null));
     65        }
     66    }
     67
     68    /**
    5869     * Non-regression test for ticket <a href="https://josm.openstreetmap.de/ticket/10214">#10214</a>
    5970     * @throws IOException if an error occurs during reading
Note: See TracChangeset for help on using the changeset viewer.