Changeset 32391 in osm for applications/editors/josm/plugins/ImportImagePlugin/test/unit
- Timestamp:
- 2016-06-24T02:02:53+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ImportImagePlugin/test/unit/org/openstreetmap/josm/plugins/ImportImagePlugin/GeoTiffReaderTest.java
r31746 r32391 14 14 15 15 import org.geotools.coverage.grid.GridCoverage2D; 16 import org.junit.BeforeClass; 16 import org.junit.Before; 17 import org.junit.Rule; 17 18 import org.junit.Test; 18 import org.openstreetmap.josm.JOSMFixture;19 19 import org.openstreetmap.josm.Main; 20 20 import org.openstreetmap.josm.TestUtils; 21 import org.openstreetmap.josm.testutils.JOSMTestRules; 21 22 22 23 /** … … 26 27 public class GeoTiffReaderTest { 27 28 28 @BeforeClass 29 public static void setUpBeforeClass() throws Exception { 30 JOSMFixture.createUnitTestFixture().init(); 29 /** 30 * Setup test. 31 */ 32 @Rule 33 public JOSMTestRules rules = new JOSMTestRules().preferences(); 34 35 @Before 36 public void setUp() throws Exception { 31 37 new ImportImagePlugin(null); 32 38 }
Note:
See TracChangeset
for help on using the changeset viewer.