source: josm/trunk/test/unit/org/openstreetmap/josm/gui/dialogs/MapPaintDialogTest.java@ 17536

Last change on this file since 17536 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.0 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs;
3
4import org.junit.jupiter.api.extension.RegisterExtension;
5import org.junit.jupiter.api.Test;
6import org.openstreetmap.josm.data.osm.DataSet;
7import org.openstreetmap.josm.gui.MainApplication;
8import org.openstreetmap.josm.gui.layer.OsmDataLayer;
9import org.openstreetmap.josm.testutils.JOSMTestRules;
10
11import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
12
13/**
14 * Unit tests of {@link MapPaintDialog} class.
15 */
16class MapPaintDialogTest {
17
18 /**
19 * Setup tests
20 */
21 @RegisterExtension
22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
23 public JOSMTestRules test = new JOSMTestRules().main().projection();
24
25 /**
26 * Unit test of {@link MapPaintDialog.InfoAction} class.
27 */
28 @Test
29 void testInfoAction() {
30 MainApplication.getLayerManager().addLayer(new OsmDataLayer(new DataSet(), "", null));
31 MainApplication.getMap().mapPaintDialog.new InfoAction().actionPerformed(null);
32 }
33}
Note: See TracBrowser for help on using the repository browser.