source: josm/trunk/test/unit/org/openstreetmap/josm/gui/preferences/imagery/AddWMTSLayerPanelTest.java@ 14235

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

add/update unit tests, fix indentation

  • 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.preferences.imagery;
3
4import static org.junit.Assert.assertFalse;
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 AddWMTSLayerPanel} class.
14 */
15public class AddWMTSLayerPanelTest {
16
17 /**
18 * Setup tests
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().preferences();
23
24 /**
25 * Unit test of {@link AddWMTSLayerPanel}.
26 */
27 @Test
28 public void testAddWMTSLayerPanel() {
29 AddWMTSLayerPanel panel = new AddWMTSLayerPanel();
30 assertFalse(panel.isImageryValid());
31 }
32
33 /**
34 * Unit test of {@link AddWMTSLayerPanel#getImageryInfo}.
35 */
36 @Test(expected = IllegalArgumentException.class)
37 public void testGetImageryInfo() {
38 new AddWMTSLayerPanel().getImageryInfo();
39 }
40}
Note: See TracBrowser for help on using the repository browser.