Changeset 18853 in josm for trunk/test/unit/org/openstreetmap/josm/io/rtklib/RtkLibPosReaderTest.java
- Timestamp:
- 2023-10-04T00:03:40+02:00 (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/rtklib/RtkLibPosReaderTest.java
r18048 r18853 13 13 14 14 import org.junit.jupiter.api.Test; 15 import org.junit.jupiter.api.extension.RegisterExtension;16 15 import org.openstreetmap.josm.data.coor.LatLon; 17 16 import org.openstreetmap.josm.data.gpx.GpxConstants; 18 17 import org.openstreetmap.josm.data.gpx.WayPoint; 19 import org.openstreetmap.josm.testutils.JOSMTestRules;20 18 import org.openstreetmap.josm.tools.date.DateUtils; 21 19 import org.xml.sax.SAXException; 22 23 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;24 20 25 21 /** … … 27 23 */ 28 24 class RtkLibPosReaderTest { 29 /**30 * Set the timezone and timeout.31 */32 @RegisterExtension33 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")34 public JOSMTestRules test = new JOSMTestRules();35 36 25 private static RtkLibPosReader read(String path) throws IOException, SAXException { 37 26 TimeZone.setDefault(TimeZone.getTimeZone("Europe/Berlin"));
Note:
See TracChangeset
for help on using the changeset viewer.