Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
- Timestamp:
- 2020-10-28T20:41:00+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java
r16643 r17275 19 19 import java.util.stream.Collectors; 20 20 21 import org.junit. BeforeClass;22 import org.junit.Test; 21 import org.junit.jupiter.api.BeforeAll; 22 import org.junit.jupiter.api.Test; 23 23 import org.openstreetmap.josm.JOSMFixture; 24 24 import org.openstreetmap.josm.data.Bounds; … … 39 39 * test data, by running the main method of this class and commit the new data file. 40 40 */ 41 publicclass ProjectionRegressionTest {41 class ProjectionRegressionTest { 42 42 43 43 private static final String PROJECTION_DATA_FILE = "nodist/data/projection/projection-regression-test-data"; … … 136 136 * Setup test. 137 137 */ 138 @Before Class138 @BeforeAll 139 139 public static void setUp() { 140 140 JOSMFixture.createUnitTestFixture().init(); … … 146 146 */ 147 147 @Test 148 publicvoid testNonRegression() throws IOException {148 void testNonRegression() throws IOException { 149 149 List<TestData> allData = readData(); 150 150 Set<String> dataCodes = allData.stream().map(data -> data.code).collect(Collectors.toSet());
Note:
See TracChangeset
for help on using the changeset viewer.
