Changeset 7081 in josm for trunk/test/unit/org/openstreetmap/josm/data/projection
- Timestamp:
- 2014-05-09T04:49:54+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
r7030 r7081 23 23 import org.junit.BeforeClass; 24 24 import org.junit.Test; 25 import org.openstreetmap.josm. Main;25 import org.openstreetmap.josm.JOSMFixture; 26 26 import org.openstreetmap.josm.data.Bounds; 27 27 import org.openstreetmap.josm.data.coor.EastNorth; … … 120 120 } 121 121 TestData next = new TestData(); 122 122 123 123 Pair<Double,Double> ll = readLine("ll", in.readLine()); 124 124 Pair<Double,Double> en = readLine("en", in.readLine()); 125 125 Pair<Double,Double> ll2 = readLine("ll2", in.readLine()); 126 126 127 127 next.code = line; 128 128 next.ll = new LatLon(ll.a, ll.b); 129 129 next.en = new EastNorth(en.a, en.b); 130 130 next.ll2 = new LatLon(ll2.a, ll2.b); 131 131 132 132 result.add(next); 133 133 } … … 150 150 @BeforeClass 151 151 public static void setUp() { 152 Main.initApplicationPreferences();152 JOSMFixture.createUnitTestFixture().init(); 153 153 } 154 154
Note:
See TracChangeset
for help on using the changeset viewer.
