source: josm/trunk/test/unit/org/openstreetmap/josm/gui/history/CoordinateInfoViewerTest.java@ 17275

Last change on this file since 17275 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.2 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.history;
3
4import static org.junit.jupiter.api.Assertions.assertNotNull;
5import static org.junit.jupiter.api.Assertions.assertThrows;
6
7import org.junit.jupiter.api.Test;
8import org.junit.jupiter.api.extension.RegisterExtension;
9import org.openstreetmap.josm.testutils.JOSMTestRules;
10
11import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
12
13/**
14 * Unit tests of {@link CoordinateInfoViewer} class.
15 */
16class CoordinateInfoViewerTest {
17
18 /**
19 * Setup test.
20 */
21 @RegisterExtension
22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
23 public JOSMTestRules test = new JOSMTestRules().preferences();
24
25 /**
26 * Test for {@link CoordinateInfoViewer#CoordinateInfoViewer} - {@code null} handling.
27 */
28 @Test
29 void testCoordinateInfoViewerNull() {
30 assertThrows(IllegalArgumentException.class, () -> new CoordinateInfoViewer(null));
31 }
32
33 /**
34 * Test for {@link CoordinateInfoViewer#CoordinateInfoViewer} - nominal case.
35 */
36 @Test
37 void testCoordinateInfoViewerNominal() {
38 assertNotNull(new CoordinateInfoViewer(new HistoryBrowserModel()));
39 }
40}
Note: See TracBrowser for help on using the repository browser.