Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/io/OsmApiTest.java
- Timestamp:
- 2020-10-28T20:41:00+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/OsmApiTest.java
r10051 r17275 2 2 package org.openstreetmap.josm.io; 3 3 4 import static org.junit. Assert.assertEquals;4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 5 6 6 import java.io.ByteArrayInputStream; 7 7 import java.nio.charset.StandardCharsets; 8 8 9 import org.junit. BeforeClass;10 import org.junit.Test; 9 import org.junit.jupiter.api.BeforeAll; 10 import org.junit.jupiter.api.Test; 11 11 import org.openstreetmap.josm.JOSMFixture; 12 12 import org.openstreetmap.josm.data.osm.Changeset; … … 17 17 * Unit tests of {@link OsmApi} class. 18 18 */ 19 publicclass OsmApiTest {19 class OsmApiTest { 20 20 21 21 /** 22 22 * Setup test. 23 23 */ 24 @Before Class24 @BeforeAll 25 25 public static void setUp() { 26 26 JOSMFixture.createUnitTestFixture().init(); … … 32 32 */ 33 33 @Test 34 publicvoid testTicket12675() throws IllegalDataException {34 void testTicket12675() throws IllegalDataException { 35 35 OsmApi api = OsmApi.getOsmApi(); 36 36 Changeset cs = new Changeset();
Note:
See TracChangeset
for help on using the changeset viewer.
