Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUITest.java
- Timestamp:
- 2020-10-28T20:41:00+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUITest.java
r12634 r17275 2 2 package org.openstreetmap.josm.gui.oauth; 3 3 4 import static org.junit. Assert.assertNotNull;4 import static org.junit.jupiter.api.Assertions.assertNotNull; 5 5 6 import org.junit. Rule;7 import org.junit.Test; 6 import org.junit.jupiter.api.extension.RegisterExtension; 7 import org.junit.jupiter.api.Test; 8 8 import org.openstreetmap.josm.gui.MainApplication; 9 9 import org.openstreetmap.josm.testutils.JOSMTestRules; … … 14 14 * Unit tests of {@link FullyAutomaticAuthorizationUI} class. 15 15 */ 16 publicclass FullyAutomaticAuthorizationUITest {16 class FullyAutomaticAuthorizationUITest { 17 17 18 18 /** 19 19 * Setup tests 20 20 */ 21 @R ule21 @RegisterExtension 22 22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 23 23 public JOSMTestRules test = new JOSMTestRules().preferences(); … … 27 27 */ 28 28 @Test 29 publicvoid testFullyAutomaticAuthorizationUI() {29 void testFullyAutomaticAuthorizationUI() { 30 30 assertNotNull(new FullyAutomaticAuthorizationUI("", MainApplication.worker)); 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.
