source: josm/trunk/test/unit/org/openstreetmap/josm/actions/SelectAllActionTest.java@ 17383

Last change on this file since 17383 was 17275, checked in by Don-vip, 3 years ago

see #16567 - upgrade almost all tests to JUnit 5, except those depending on WiremockRule

See https://github.com/tomakehurst/wiremock/issues/684

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.junit.jupiter.api.Assertions.assertEquals;
5
6import org.junit.jupiter.api.extension.RegisterExtension;
7import org.junit.jupiter.api.Test;
8import org.openstreetmap.josm.data.osm.DataSet;
9import org.openstreetmap.josm.gui.MainApplication;
10import org.openstreetmap.josm.testutils.JOSMTestRules;
11
12import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
13
14/**
15 * Unit tests for class {@link SelectAllAction}.
16 */
17final class SelectAllActionTest {
18
19 /**
20 * Setup test.
21 */
22 @RegisterExtension
23 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
24 public JOSMTestRules rules = new JOSMTestRules().preferences().projection().main();
25
26 /**
27 * Unit test of {@link SelectAllAction#actionPerformed} method.
28 */
29 @Test
30 void testActionPerformed() {
31 SelectByInternalPointActionTest.initDataSet();
32 DataSet ds = MainApplication.getLayerManager().getEditDataSet();
33
34 assertEquals(0, ds.getSelected().size());
35 new SelectAllAction().actionPerformed(null);
36 assertEquals(6, ds.getSelected().size());
37 }
38}
Note: See TracBrowser for help on using the repository browser.