source: josm/trunk/test/unit/org/openstreetmap/josm/gui/preferences/validator/ValidatorPreferenceTest.java@ 14719

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

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

  • 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.validator;
3
4import static org.junit.Assert.assertNotNull;
5
6import org.junit.BeforeClass;
7import org.junit.Test;
8import org.openstreetmap.josm.JOSMFixture;
9import org.openstreetmap.josm.gui.preferences.PreferencesTestUtils;
10
11/**
12 * Unit tests of {@link ValidatorPreference} class.
13 */
14public class ValidatorPreferenceTest {
15
16 /**
17 * Setup test.
18 */
19 @BeforeClass
20 public static void setUpBeforeClass() {
21 JOSMFixture.createUnitTestFixture().init();
22 }
23
24 /**
25 * Unit test of {@link ValidatorPreference#ValidatorPreference}.
26 */
27 @Test
28 public void testValidatorPreference() {
29 assertNotNull(new ValidatorPreference.Factory().createPreferenceSetting());
30 }
31
32 /**
33 * Unit test of {@link ValidatorPreference#addGui}.
34 */
35 @Test
36 public void testAddGui() {
37 PreferencesTestUtils.doTestPreferenceSettingAddGui(new ValidatorPreference.Factory(), null);
38 }
39}
Note: See TracBrowser for help on using the repository browser.