Changeset 18837 in josm for trunk/test/unit/org
- Timestamp:
- 2023-09-20T21:24:36+02:00 (17 months ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/actions/DeleteLayerActionTest.java
r18487 r18837 5 5 import static org.junit.jupiter.api.Assertions.assertNull; 6 6 7 import org.junit.jupiter.api.extension.RegisterExtension;8 7 import org.junit.jupiter.api.Test; 9 8 import org.openstreetmap.josm.data.osm.DataSet; 10 9 import org.openstreetmap.josm.gui.MainApplication; 11 10 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 12 import org.openstreetmap.josm.testutils.JOSMTestRules; 13 14 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 11 import org.openstreetmap.josm.testutils.annotations.Main; 12 import org.openstreetmap.josm.testutils.annotations.Projection; 15 13 16 14 /** 17 15 * Unit tests for class {@link DeleteLayerAction}. 18 16 */ 17 @Main 18 @Projection 19 19 final class DeleteLayerActionTest { 20 21 /**22 * Setup test.23 */24 @RegisterExtension25 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")26 public static JOSMTestRules test = new JOSMTestRules().main().projection();27 28 20 /** 29 21 * Unit test of {@link DeleteLayerAction#actionPerformed}
Note:
See TracChangeset
for help on using the changeset viewer.