source: josm/trunk/test/unit/org/openstreetmap/josm/actions/SessionSaveAsActionTest.java@ 11974

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

sonar - squid:S1871 - Two branches in the same conditional structure should not have exactly the same implementation

  • Property svn:eol-style set to native
File size: 864 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.junit.Assert.assertFalse;
5
6import org.junit.Rule;
7import org.junit.Test;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Unit tests for class {@link SessionSaveAsAction}.
14 */
15public class SessionSaveAsActionTest {
16
17 /**
18 * Setup test.
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().platform();
23
24 /**
25 * Unit test of {@link SessionSaveAsAction#actionPerformed}
26 */
27 @Test
28 public void testSessionSaveAsAction() {
29 SessionSaveAsAction action = new SessionSaveAsAction();
30 assertFalse(action.isEnabled());
31 action.actionPerformed(null);
32 }
33}
Note: See TracBrowser for help on using the repository browser.