Changeset 9749 in josm for trunk/test
- Timestamp:
- 2016-02-07T14:41:42+01:00 (9 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/NmeaReaderTest.java
r9740 r9749 2 2 package org.openstreetmap.josm.io; 3 3 4 import static junit.framework.Assert.assertEquals;4 import static org.junit.Assert.assertEquals; 5 5 6 6 import java.io.FileInputStream; … … 9 9 import java.util.List; 10 10 11 import nl.jqno.equalsverifier.EqualsVerifier;12 11 import org.junit.Test; 13 12 import org.openstreetmap.josm.data.coor.LatLon; … … 15 14 import org.openstreetmap.josm.data.gpx.WayPoint; 16 15 import org.openstreetmap.josm.io.NmeaReader.NMEA_TYPE; 16 17 import nl.jqno.equalsverifier.EqualsVerifier; 17 18 18 19 /** -
trunk/test/unit/org/openstreetmap/josm/io/OsmWriterTest.java
r9310 r9749 13 13 import org.openstreetmap.josm.tools.Utils; 14 14 15 /** 16 * Unit tests of {@link OsmWriter} class. 17 */ 15 18 public class OsmWriterTest { 16 19 20 /** 21 * Unit test of {@link OsmWriter#byIdComparator}. 22 */ 17 23 @Test 18 public void testByIdComparator() throws Exception{24 public void testByIdComparator() { 19 25 20 26 final List<NodeData> ids = new ArrayList<>();
Note:
See TracChangeset
for help on using the changeset viewer.