source: josm/trunk/test/unit/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDiscussionPanelTest.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: 603 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset;
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 ChangesetDiscussionPanel} class.
12 */
13@BasicPreferences
14class ChangesetDiscussionPanelTest {
15 /**
16 * Unit test of {@link ChangesetDiscussionPanel#ChangesetDiscussionPanel}.
17 */
18 @Test
19 void testChangesetDiscussionPanel() {
20 assertNotNull(new ChangesetDiscussionPanel());
21 }
22}
Note: See TracBrowser for help on using the repository browser.