source: josm/trunk/test/unit/org/openstreetmap/josm/gui/layer/WMSLayerTest.java@ 12632

Last change on this file since 12632 was 12632, checked in by Don-vip, 7 years ago

see #15182 - fix unit tests

  • Property svn:eol-style set to native
File size: 1.5 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.layer;
3
4import static org.junit.Assert.assertEquals;
5
6import org.junit.Rule;
7import org.junit.Test;
8import org.openstreetmap.josm.Main;
9import org.openstreetmap.josm.data.imagery.ImageryInfo;
10import org.openstreetmap.josm.data.imagery.ImageryInfo.ImageryType;
11import org.openstreetmap.josm.testutils.JOSMTestRules;
12
13import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
14
15/**
16 * Unit tests of {@link WMSLayer} class.
17 */
18public class WMSLayerTest {
19
20 /**
21 * Setup tests
22 */
23 @Rule
24 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
25 public JOSMTestRules test = new JOSMTestRules().main().platform().projection();
26
27 /**
28 * Unit test of {@link WMSLayer#WMSLayer}.
29 */
30 @Test
31 public void testWMSLayer() {
32 WMSLayer wms = new WMSLayer(new ImageryInfo("test wms", "http://localhost"));
33 Main.getLayerManager().addLayer(wms);
34 try {
35 assertEquals(ImageryType.WMS, wms.getInfo().getImageryType());
36 } finally {
37 // Ensure we clean the place before leaving, even if test fails.
38 Main.getLayerManager().removeLayer(wms);
39 }
40 }
41
42 /**
43 * Non-regression test for <a href="https://josm.openstreetmap.de/ticket/13828">Bug #13828</a>.
44 */
45 @Test(expected = IllegalArgumentException.class)
46 public void testTicket13828() {
47 new WMSLayer(new ImageryInfo("TMS", "http://203.159.29.217/try2/{z}/{x}/{y}.png"));
48 }
49}
Note: See TracBrowser for help on using the repository browser.