Ignore:
Timestamp:
2016-09-01T01:07:54+02:00 (8 years ago)
Author:
donvip
Message:

junit4 style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/HgtReaderTest.java

    r32775 r32893  
    11// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.plugins.elevation.tests;
     3
     4import static org.junit.Assert.assertEquals;
     5import static org.junit.Assert.assertFalse;
    36
    47import java.io.IOException;
     
    912import java.nio.file.Paths;
    1013
     14import org.junit.Before;
    1115import org.junit.Rule;
     16import org.junit.Test;
    1217import org.openstreetmap.josm.TestUtils;
    1318import org.openstreetmap.josm.data.coor.LatLon;
     
    1520import org.openstreetmap.josm.testutils.JOSMTestRules;
    1621
    17 import junit.framework.TestCase;
    18 
    19 public class HgtReaderTest extends TestCase {
     22public class HgtReaderTest {
    2023
    2124    @Rule
     
    2629     * @throws IOException if SRTM files cannot be installed
    2730     */
    28     @Override
     31    @Before
    2932    public void setUp() throws IOException {
    3033        // Install SRTM files to plugin directory
     
    4649    }
    4750
     51    @Test
    4852    public void testGetElevationFromHgt() {
    4953        // Staufenberg, Hessen
Note: See TracChangeset for help on using the changeset viewer.