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

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