source: josm/trunk/test/unit/org/openstreetmap/josm/gui/oauth/ManualAuthorizationUITest.java@ 18037

Last change on this file since 18037 was 18037, checked in by Don-vip, 3 years ago

fix #21064 - Add JUnit 5 extension for preferences (patch by taylor.smock)

  • Property svn:eol-style set to native
File size: 649 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.oauth;
3
4import static org.junit.jupiter.api.Assertions.assertNotNull;
5
6import org.junit.jupiter.api.Test;
7import org.openstreetmap.josm.gui.MainApplication;
8import org.openstreetmap.josm.testutils.annotations.BasicPreferences;
9
10/**
11 * Unit tests of {@link ManualAuthorizationUI} class.
12 */
13@BasicPreferences
14class ManualAuthorizationUITest {
15 /**
16 * Unit test of {@link ManualAuthorizationUI#ManualAuthorizationUI}.
17 */
18 @Test
19 void testManualAuthorizationUI() {
20 assertNotNull(new ManualAuthorizationUI("", MainApplication.worker));
21 }
22}
Note: See TracBrowser for help on using the repository browser.