Changeset 18853 in josm for trunk/test/unit/org/openstreetmap/josm/data/gpx/WayPointTest.java
- Timestamp:
- 2023-10-04T00:03:40+02:00 (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/gpx/WayPointTest.java
r17715 r18853 2 2 package org.openstreetmap.josm.data.gpx; 3 3 4 import org.junit.jupiter.api.extension.RegisterExtension; 4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 import static org.junit.jupiter.api.Assertions.assertNotEquals; 6 7 import java.time.Instant; 8 5 9 import org.junit.jupiter.api.Test; 6 10 import org.openstreetmap.josm.TestUtils; 7 11 import org.openstreetmap.josm.data.coor.LatLon; 8 import org.openstreetmap.josm.testutils.JOSMTestRules;9 12 10 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;11 13 import nl.jqno.equalsverifier.EqualsVerifier; 12 14 import nl.jqno.equalsverifier.Warning; 13 14 import java.time.Instant;15 16 import static org.junit.jupiter.api.Assertions.assertEquals;17 import static org.junit.jupiter.api.Assertions.assertNotEquals;18 15 19 16 /** … … 21 18 */ 22 19 class WayPointTest { 23 24 /**25 * Setup test.26 */27 @RegisterExtension28 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")29 public JOSMTestRules test = new JOSMTestRules();30 31 20 /** 32 21 * Unit test of methods {@link WayPoint#equals} and {@link WayPoint#hashCode}.
Note:
See TracChangeset
for help on using the changeset viewer.