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

Last change on this file since 11182 was 10962, checked in by Don-vip, 8 years ago

improve unit tests

  • Property svn:eol-style set to native
File size: 765 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs;
3
4import org.junit.Rule;
5import org.junit.Test;
6import org.openstreetmap.josm.Main;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10
11/**
12 * Unit tests of {@link MapPaintDialog} class.
13 */
14public class MapPaintDialogTest {
15
16 /**
17 * Setup tests
18 */
19 @Rule
20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
21 public JOSMTestRules test = new JOSMTestRules().commands();
22
23 /**
24 * Unit test of {@link MapPaintDialog.InfoAction} class.
25 */
26 @Test
27 public void testInfoAction() {
28 Main.map.mapPaintDialog.new InfoAction().actionPerformed(null);
29 }
30}
Note: See TracBrowser for help on using the repository browser.