Changeset 6471 in josm for trunk/test/unit/org/openstreetmap/josm/gui
- Timestamp:
- 2013-12-11T00:51:08+01:00 (11 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/SystemOfMeasurementTest.java
r6422 r6471 23 23 @BeforeClass 24 24 public static void setUp() { 25 Main. pref = newPreferences();25 Main.initApplicationPreferences(); 26 26 } 27 27 -
trunk/test/unit/org/openstreetmap/josm/gui/conflict/nodes/NodeListMergeModelTest.java
r5299 r6471 32 32 @BeforeClass 33 33 public static void init() { 34 Main. pref = newPreferences();34 Main.initApplicationPreferences(); 35 35 } 36 36 -
trunk/test/unit/org/openstreetmap/josm/gui/conflict/properties/PropertiesMergeModelTest.java
r5556 r6471 48 48 public static void init() { 49 49 Main.setProjection(Projections.getProjectionByCode("EPSG:4326")); 50 Main. pref = newPreferences();50 Main.initApplicationPreferences(); 51 51 } 52 52 -
trunk/test/unit/org/openstreetmap/josm/gui/conflict/tags/TagMergeItemTest.java
r3577 r6471 18 18 @BeforeClass 19 19 public static void init() { 20 Main. pref = newPreferences();20 Main.initApplicationPreferences(); 21 21 } 22 22 -
trunk/test/unit/org/openstreetmap/josm/gui/conflict/tags/TagMergeModelTest.java
r3577 r6471 24 24 @BeforeClass 25 25 public static void init() { 26 Main. pref = newPreferences();26 Main.initApplicationPreferences(); 27 27 } 28 28 -
trunk/test/unit/org/openstreetmap/josm/gui/dialogs/relation/sort/RelationSorterTest.java
r6461 r6471 26 26 @BeforeClass 27 27 public static void loadData() throws FileNotFoundException, IllegalDataException { 28 Main. pref = newPreferences();28 Main.initApplicationPreferences(); 29 29 Main.setProjection(Projections.getProjectionByCode("EPSG:3857")); // Mercator 30 30 testDataset = OsmReader.parseDataSet(new FileInputStream("data_nodist/relation_sort.osm"), NullProgressMonitor.INSTANCE); -
trunk/test/unit/org/openstreetmap/josm/gui/dialogs/relation/sort/WayConnectionTypeCalculatorTest.java
r6467 r6471 27 27 @BeforeClass 28 28 public static void loadData() throws FileNotFoundException, IllegalDataException { 29 Main. pref = newPreferences();29 Main.initApplicationPreferences(); 30 30 Main.setProjection(Projections.getProjectionByCode("EPSG:3857")); // Mercator 31 31 testDataset = OsmReader.parseDataSet(new FileInputStream("data_nodist/relation_sort.osm"), NullProgressMonitor.INSTANCE); -
trunk/test/unit/org/openstreetmap/josm/gui/tagging/TaggingPresetReaderTest.java
r6208 r6471 23 23 @BeforeClass 24 24 public static void setUpClass() { 25 Main. pref = newPreferences();25 Main.initApplicationPreferences(); 26 26 testdataroot = System.getProperty("josm.test.data"); 27 27 if (testdataroot == null || testdataroot.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.