source: josm/trunk/test/unit/org/openstreetmap/josm/data/PreferencesTest.java@ 14732

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

see #15229 - deprecate Main.pref

  • 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.data;
3
4import static org.junit.Assert.assertEquals;
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 Preferences}.
14 */
15public class PreferencesTest {
16
17 /**
18 * Setup test.
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().preferences().fakeAPI();
23
24 /**
25 * Test {@link Preferences#toXML}.
26 */
27 @Test
28 public void testToXml() {
29 assertEquals(String.format(
30 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>%n" +
31 "<preferences xmlns='http://josm.openstreetmap.de/preferences-1.0' version='%d'>%n" +
32 " <tag key='osm-server.url' value='http://fake.xxx/api'/>%n" +
33 "</preferences>%n", Version.getInstance().getVersion()),
34 Preferences.main().toXML(true));
35 }
36}
Note: See TracBrowser for help on using the repository browser.