source: josm/trunk/test/unit/org/openstreetmap/josm/gui/dialogs/ChangesetDialogTest.java@ 17360

Last change on this file since 17360 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: 1.0 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs;
3
4import org.junit.jupiter.api.extension.RegisterExtension;
5import org.junit.jupiter.api.Test;
6import org.openstreetmap.josm.gui.dialogs.ChangesetDialog.LaunchChangesetManager;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10import net.trajano.commons.testing.UtilityClassTestUtil;
11
12/**
13 * Unit tests of {@link ChangesetDialog} class.
14 */
15class ChangesetDialogTest {
16
17 /**
18 * Setup tests
19 */
20 @RegisterExtension
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules();
23
24 /**
25 * Tests that {@code LaunchChangesetManager} satisfies utility class criteria.
26 * @throws ReflectiveOperationException if an error occurs
27 */
28 @Test
29 void testUtilityClass() throws ReflectiveOperationException {
30 UtilityClassTestUtil.assertUtilityClassWellDefined(LaunchChangesetManager.class);
31 }
32}
Note: See TracBrowser for help on using the repository browser.