Ignore:
Timestamp:
2023-03-21T14:49:10+01:00 (3 years ago)
Author:
taylor.smock
Message:

See #16567: Convert most plugin tests to JUnit 5

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  
    22package org.openstreetmap.josm.plugins.fr.cadastre.edigeo;
    33
    4 import static org.junit.Assert.assertEquals;
     4import static org.junit.jupiter.api.Assertions.assertEquals;
    55
    66import java.util.Arrays;
    77
    8 import org.junit.Test;
     8import org.junit.jupiter.api.Test;
    99import org.openstreetmap.josm.TestUtils;
    1010import org.openstreetmap.josm.plugins.fr.cadastre.edigeo.EdigeoRecord.Format;
     
    1616 * Unit test of {@link EdigeoRecord}.
    1717 */
    18 public class EdigeoRecordTest {
     18class EdigeoRecordTest {
    1919
    2020    /**
     
    2222     */
    2323    @Test
    24     public void testEdigeoRecord() {
     24    void testEdigeoRecord() {
    2525        EdigeoRecord r = new EdigeoRecord("SCPCP27:TEST01;SeSD;OBJ;PARCELLE_id");
    2626        assertEquals("SCP", r.name);
     
    3535     */
    3636    @Test
    37     public void testEqualsContract() {
     37    void testEqualsContract() {
    3838        TestUtils.assumeWorkingEqualsVerifier();
    3939        EqualsVerifier.forClass(EdigeoRecord.class).usingGetClass()
Note: See TracChangeset for help on using the changeset viewer.