source: josm/trunk/test/unit/org/openstreetmap/josm/gui/io/BasicUploadSettingsPanelTest.java@ 10962

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

improve unit tests

  • Property svn:eol-style set to native
File size: 860 bytes
RevLine 
[9666]1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.io;
3
4import static org.junit.Assert.assertNotNull;
5
[10962]6import org.junit.Rule;
[9666]7import org.junit.Test;
[10962]8import org.openstreetmap.josm.testutils.JOSMTestRules;
[9666]9
[10962]10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
[9666]12/**
13 * Unit tests of {@link BasicUploadSettingsPanel} class.
14 */
15public class BasicUploadSettingsPanelTest {
16
17 /**
18 * Setup tests
19 */
[10962]20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().preferences();
[9666]23
24 /**
25 * Test of {@link BasicUploadSettingsPanel#BasicUploadSettingsPanel}.
26 */
27 @Test
28 public void testBasicUploadSettingsPanel() {
29 assertNotNull(new BasicUploadSettingsPanel(new ChangesetCommentModel(), new ChangesetCommentModel()));
30 }
31}
Note: See TracBrowser for help on using the repository browser.