Changeset 36064 in osm for applications/editors/josm/plugins/cadastre-fr
- Timestamp:
- 2023-03-21T14:49:10+01:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/test/unit/org/openstreetmap/josm/plugins/fr/cadastre/edigeo/EdigeoRecordTest.java
r33773 r36064 2 2 package org.openstreetmap.josm.plugins.fr.cadastre.edigeo; 3 3 4 import static org.junit. Assert.assertEquals;4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 5 6 6 import java.util.Arrays; 7 7 8 import org.junit.Test; 8 import org.junit.jupiter.api.Test; 9 9 import org.openstreetmap.josm.TestUtils; 10 10 import org.openstreetmap.josm.plugins.fr.cadastre.edigeo.EdigeoRecord.Format; … … 16 16 * Unit test of {@link EdigeoRecord}. 17 17 */ 18 publicclass EdigeoRecordTest {18 class EdigeoRecordTest { 19 19 20 20 /** … … 22 22 */ 23 23 @Test 24 publicvoid testEdigeoRecord() {24 void testEdigeoRecord() { 25 25 EdigeoRecord r = new EdigeoRecord("SCPCP27:TEST01;SeSD;OBJ;PARCELLE_id"); 26 26 assertEquals("SCP", r.name); … … 35 35 */ 36 36 @Test 37 publicvoid testEqualsContract() {37 void testEqualsContract() { 38 38 TestUtils.assumeWorkingEqualsVerifier(); 39 39 EqualsVerifier.forClass(EdigeoRecord.class).usingGetClass()
Note:
See TracChangeset
for help on using the changeset viewer.
