source: josm/trunk/test/unit/org/openstreetmap/josm/actions/ExitActionTest.java@ 13938

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

add more unit tests

  • Property svn:eol-style set to native
File size: 946 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import org.junit.Rule;
5import org.junit.Test;
6import org.junit.contrib.java.lang.system.ExpectedSystemExit;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10
11/**
12 * Unit tests for class {@link ExitAction}.
13 */
14public final class ExitActionTest {
15
16 /**
17 * Setup test.
18 */
19 @Rule
20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
21 public JOSMTestRules test = new JOSMTestRules().platform();
22
23 /**
24 * System.exit rule
25 */
26 @Rule
27 public final ExpectedSystemExit exit = ExpectedSystemExit.none();
28
29 /**
30 * Unit test of {@link ExitAction#actionPerformed}
31 */
32 @Test
33 public void testActionPerformed() {
34 exit.expectSystemExitWithStatus(0);
35 // No layer
36 new ExitAction().actionPerformed(null);
37 }
38}
Note: See TracBrowser for help on using the repository browser.