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

Last change on this file since 13509 was 10962, checked in by Don-vip, 8 years ago

improve unit tests

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.history;
3
4import static org.junit.Assert.assertNotNull;
5
6import org.junit.Rule;
7import org.junit.Test;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Unit tests of {@link CoordinateInfoViewer} class.
14 */
15public class CoordinateInfoViewerTest {
16
17 /**
18 * Setup test.
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().preferences();
23
24 /**
25 * Test for {@link CoordinateInfoViewer#CoordinateInfoViewer} - {@code null} handling.
26 */
27 @Test(expected = IllegalArgumentException.class)
28 public void testCoordinateInfoViewerNull() {
29 new CoordinateInfoViewer(null);
30 }
31
32 /**
33 * Test for {@link CoordinateInfoViewer#CoordinateInfoViewer} - nominal case.
34 */
35 @Test
36 public void testCoordinateInfoViewerNominal() {
37 assertNotNull(new CoordinateInfoViewer(new HistoryBrowserModel()));
38 }
39}
Note: See TracBrowser for help on using the repository browser.