Changeset 10222 in josm for trunk/test/unit/org/openstreetmap/josm/tools
- Timestamp:
- 2016-05-15T21:14:06+02:00 (10 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
-
ExifReaderTest.java (modified) (1 diff)
-
date/DateUtilsTest.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/ExifReaderTest.java
r9672 r10222 86 86 @Test 87 87 public void testReadDirection() { 88 Double direction = ExifReader.readDirection(directionSampleFile); 89 assertEquals(new Double(46.5), direction); 88 assertEquals(Double.valueOf(46.5), ExifReader.readDirection(directionSampleFile)); 90 89 } 91 90 -
trunk/test/unit/org/openstreetmap/josm/tools/date/DateUtilsTest.java
r10133 r10222 14 14 import org.openstreetmap.josm.JOSMFixture; 15 15 import org.openstreetmap.josm.tools.UncheckedParseException; 16 17 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 16 18 17 19 /** … … 192 194 */ 193 195 @Test 196 @SuppressFBWarnings(value = "ISC_INSTANTIATE_STATIC_CLASS") 194 197 public void testCoverage() { 195 198 assertNotNull(new DateUtils());
Note:
See TracChangeset
for help on using the changeset viewer.
