Changeset 9749 in josm
- Timestamp:
- 2016-02-07T14:41:42+01:00 (9 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r9735 r9749 642 642 <target name="checkstyle"> 643 643 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" 644 classpath="tools/checkstyle/checkstyle-6.1 4.1-all.jar"/>644 classpath="tools/checkstyle/checkstyle-6.15-all.jar"/> 645 645 <checkstyle config="tools/checkstyle/josm_checks.xml"> 646 646 <fileset dir="${basedir}/src/org/openstreetmap/josm" includes="**/*.java" -
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.