Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/gui/dialogs/ChangesetDialogTest.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/dialogs/ChangesetDialogTest.java
r16182 r17275 2 2 package org.openstreetmap.josm.gui.dialogs; 3 3 4 import org.junit. Rule;5 import org.junit.Test; 4 import org.junit.jupiter.api.extension.RegisterExtension; 5 import org.junit.jupiter.api.Test; 6 6 import org.openstreetmap.josm.gui.dialogs.ChangesetDialog.LaunchChangesetManager; 7 7 import org.openstreetmap.josm.testutils.JOSMTestRules; … … 13 13 * Unit tests of {@link ChangesetDialog} class. 14 14 */ 15 publicclass ChangesetDialogTest {15 class ChangesetDialogTest { 16 16 17 17 /** 18 18 * Setup tests 19 19 */ 20 @R ule20 @RegisterExtension 21 21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 22 22 public JOSMTestRules test = new JOSMTestRules(); … … 27 27 */ 28 28 @Test 29 publicvoid testUtilityClass() throws ReflectiveOperationException {29 void testUtilityClass() throws ReflectiveOperationException { 30 30 UtilityClassTestUtil.assertUtilityClassWellDefined(LaunchChangesetManager.class); 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.
