Ignore:
Timestamp:
2023-10-04T00:03:40+02:00 (18 months ago)
Author:
taylor.smock
Message:

See #16567: Update to JUnit 5

This removes new JOSMTestRules() with no additional setup and most
JOSMFixture calls.

Removing the bare JOSMTestRules speeds up the test suite since there are two
fewer System.gc() calls per test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/correction/TagCorrectionTest.java

    r17275 r18853  
    22package org.openstreetmap.josm.data.correction;
    33
    4 import org.junit.jupiter.api.extension.RegisterExtension;
    54import org.junit.jupiter.api.Test;
    65import org.openstreetmap.josm.TestUtils;
    7 import org.openstreetmap.josm.testutils.JOSMTestRules;
    86
    9 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
    107import nl.jqno.equalsverifier.EqualsVerifier;
    118
     
    1411 */
    1512class TagCorrectionTest {
    16 
    17     /**
    18      * Setup test.
    19      */
    20     @RegisterExtension
    21     @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
    22     public JOSMTestRules test = new JOSMTestRules();
    23 
    2413    /**
    2514     * Unit test of methods {@link TagCorrection#equals} and {@link TagCorrection#hashCode}.
Note: See TracChangeset for help on using the changeset viewer.