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

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

fix #21064 - Add JUnit 5 extension for preferences (patch by taylor.smock)

  • Property svn:eol-style set to native
File size: 627 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset.query;
3
4import static org.junit.jupiter.api.Assertions.assertNotNull;
5
6import org.openstreetmap.josm.testutils.annotations.BasicPreferences;
7
8import org.junit.jupiter.api.Test;
9
10/**
11 * Unit tests of {@link AdvancedChangesetQueryPanel} class.
12 */
13@BasicPreferences
14class AdvancedChangesetQueryPanelTest {
15 /**
16 * Unit test of {@link AdvancedChangesetQueryPanel#AdvancedChangesetQueryPanel}.
17 */
18 @Test
19 void testAdvancedChangesetQueryPanel() {
20 assertNotNull(new AdvancedChangesetQueryPanel());
21 }
22}
Note: See TracBrowser for help on using the repository browser.