source: josm/trunk/test/unit/org/openstreetmap/josm/data/preferences/JosmUrlsTest.java@ 14119

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

see #15229 - deprecate all Main methods returning an URL

  • Property svn:eol-style set to native
File size: 845 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.preferences;
3
4import static org.junit.Assert.assertEquals;
5
6import org.junit.Rule;
7import org.junit.Test;
8import org.openstreetmap.josm.spi.preferences.Config;
9import org.openstreetmap.josm.testutils.JOSMTestRules;
10
11import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
12
13/**
14 * Unit tests of {@link JosmUrls} class.
15 */
16public class JosmUrlsTest {
17
18 /**
19 * Setup test.
20 */
21 @Rule
22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
23 public JOSMTestRules test = new JOSMTestRules().devAPI();
24
25 /**
26 * Unit test of {@link JosmUrls#getBaseUserUrl}.
27 */
28 @Test
29 public void testGetBaseUserUrl() {
30 assertEquals("https://api06.dev.openstreetmap.org/user", Config.getUrls().getBaseUserUrl());
31 }
32}
Note: See TracBrowser for help on using the repository browser.