source: josm/trunk/test/unit/org/openstreetmap/josm/actions/FullscreenToggleActionTest.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: 943 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import org.junit.jupiter.api.extension.RegisterExtension;
5import org.junit.jupiter.api.Test;
6import org.openstreetmap.josm.testutils.JOSMTestRules;
7
8import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
9
10/**
11 * Test {@link FullscreenToggleAction}
12 */
13class FullscreenToggleActionTest {
14 /**
15 * Setup test.
16 */
17 @RegisterExtension
18 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
19 public JOSMTestRules test = new JOSMTestRules().main();
20
21 /**
22 * Test {@link FullscreenToggleAction}
23 */
24 @Test
25 void testFullscreenToggleAction() {
26 FullscreenToggleAction action = new FullscreenToggleAction();
27 // Cannot really test it in headless mode, but at least check we can toggle the action without error
28 action.actionPerformed(null);
29 action.actionPerformed(null);
30 }
31}
Note: See TracBrowser for help on using the repository browser.