Changeset 13219 in josm for trunk/test
- Timestamp:
- 2017-12-18T00:14:48+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/io/AsynchronousUploadPrimitivesTaskTest.java
r13133 r13219 2 2 package org.openstreetmap.josm.gui.io; 3 3 4 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 4 import java.util.Optional; 5 6 import org.junit.After; 7 import org.junit.Assert; 8 import org.junit.Before; 5 9 import org.junit.Rule; 6 import org.junit.Before;7 import org.junit.After;8 10 import org.junit.Test; 9 import org.junit.Assert;10 11 import org.openstreetmap.josm.data.APIDataSet; 11 12 import org.openstreetmap.josm.data.coor.LatLon; … … 18 19 import org.openstreetmap.josm.testutils.JOSMTestRules; 19 20 20 import java.util.Optional;21 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 21 22 23 /** 24 * Unit tests of {@link AsynchronousUploadPrimitivesTask}. 25 */ 22 26 public class AsynchronousUploadPrimitivesTaskTest { 23 27 … … 62 66 strategy = null; 63 67 changeset = null; 68 uploadPrimitivesTask.cancel(); 64 69 uploadPrimitivesTask = null; 65 70 }
Note:
See TracChangeset
for help on using the changeset viewer.