Ignore:
Timestamp:
2016-04-03T19:25:25+02:00 (8 years ago)
Author:
Don-vip
Message:

add more unit tests

Location:
trunk/test/unit/org/openstreetmap/josm/gui/history
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/history/CoordinateInfoViewerTest.java

    r9958 r10108  
    44import static org.junit.Assert.assertNotNull;
    55
     6import org.junit.BeforeClass;
    67import org.junit.Test;
     8import org.openstreetmap.josm.JOSMFixture;
    79
    810/**
     
    1012 */
    1113public class CoordinateInfoViewerTest {
     14
     15    /**
     16     * Setup test.
     17     */
     18    @BeforeClass
     19    public static void setUpBeforeClass() {
     20        JOSMFixture.createUnitTestFixture().init();
     21    }
    1222
    1323    /**
  • trunk/test/unit/org/openstreetmap/josm/gui/history/HistoryBrowserDialogTest.java

    r9958 r10108  
    66import java.util.Date;
    77
     8import org.junit.BeforeClass;
    89import org.junit.Test;
     10import org.openstreetmap.josm.JOSMFixture;
    911import org.openstreetmap.josm.data.osm.OsmPrimitiveType;
    1012import org.openstreetmap.josm.data.osm.User;
     
    1921 */
    2022public class HistoryBrowserDialogTest {
     23
     24    /**
     25     * Setup test.
     26     */
     27    @BeforeClass
     28    public static void setUpBeforeClass() {
     29        JOSMFixture.createUnitTestFixture().init();
     30    }
    2131
    2232    /**
Note: See TracChangeset for help on using the changeset viewer.