Changeset 5073 in josm for trunk/test/unit/org
- Timestamp:
- 2012-03-11T21:19:59+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
r5065 r5073 24 24 import java.util.Set; 25 25 26 import org.junit.BeforeClass; 26 27 import org.junit.Test; 28 import org.openstreetmap.josm.Main; 27 29 import org.openstreetmap.josm.data.Bounds; 30 import org.openstreetmap.josm.data.Preferences; 28 31 import org.openstreetmap.josm.data.coor.EastNorth; 29 32 import org.openstreetmap.josm.data.coor.LatLon; … … 54 57 55 58 public static void main(String[] args) throws IOException, FileNotFoundException { 59 setUp(); 56 60 Map<String, Projection> allCodes = new LinkedHashMap<String, Projection>(); 57 61 List<Projection> projs = Projections.getProjections(); … … 144 148 } 145 149 150 @BeforeClass 151 public static void setUp() { 152 Main.pref = new Preferences(); 153 } 154 146 155 @Test 147 156 public void regressionTest() throws IOException, FileNotFoundException {
Note:
See TracChangeset
for help on using the changeset viewer.