source: josm/trunk/test/unit/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanelTest.java@ 9544

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

add unit tests

File size: 783 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset.query;
3
4import static org.junit.Assert.assertNotNull;
5
6import org.junit.BeforeClass;
7import org.junit.Test;
8import org.openstreetmap.josm.JOSMFixture;
9
10/**
11 * Unit tests of {@link AdvancedChangesetQueryPanel} class.
12 */
13public class AdvancedChangesetQueryPanelTest {
14
15 /**
16 * Setup test.
17 */
18 @BeforeClass
19 public static void setUpBeforeClass() {
20 JOSMFixture.createUnitTestFixture().init();
21 }
22
23 /**
24 * Unit test of {@link AdvancedChangesetQueryPanel#AdvancedChangesetQueryPanel}.
25 */
26 @Test
27 public void testAdvancedChangesetQueryPanel() {
28 assertNotNull(new AdvancedChangesetQueryPanel());
29 }
30}
Note: See TracBrowser for help on using the repository browser.