Changeset 32893 in osm for applications/editors
- Timestamp:
- 2016-09-01T01:07:54+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/HgtReaderTest.java
r32775 r32893 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.plugins.elevation.tests; 3 4 import static org.junit.Assert.assertEquals; 5 import static org.junit.Assert.assertFalse; 3 6 4 7 import java.io.IOException; … … 9 12 import java.nio.file.Paths; 10 13 14 import org.junit.Before; 11 15 import org.junit.Rule; 16 import org.junit.Test; 12 17 import org.openstreetmap.josm.TestUtils; 13 18 import org.openstreetmap.josm.data.coor.LatLon; … … 15 20 import org.openstreetmap.josm.testutils.JOSMTestRules; 16 21 17 import junit.framework.TestCase; 18 19 public class HgtReaderTest extends TestCase { 22 public class HgtReaderTest { 20 23 21 24 @Rule … … 26 29 * @throws IOException if SRTM files cannot be installed 27 30 */ 28 @ Override31 @Before 29 32 public void setUp() throws IOException { 30 33 // Install SRTM files to plugin directory … … 46 49 } 47 50 51 @Test 48 52 public void testGetElevationFromHgt() { 49 53 // Staufenberg, Hessen
Note:
See TracChangeset
for help on using the changeset viewer.