source: josm/trunk/test/unit/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanelTest.java@ 9669

Last change on this file since 9669 was 9669, checked in by bastiK, 8 years ago

add missing svn:eol-style=native (see #12410)

  • Property svn:eol-style set to native
File size: 705 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset;
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 ChangesetDetailPanel} class.
12 */
13public class ChangesetDetailPanelTest {
14
15 /**
16 * Setup tests
17 */
18 @BeforeClass
19 public static void setUpBeforeClass() {
20 JOSMFixture.createUnitTestFixture().init();
21 }
22
23 /**
24 * Unit test of {@link ChangesetDetailPanel#ChangesetDetailPanel}.
25 */
26 @Test
27 public void testChangesetDetailPanel() {
28 assertNotNull(new ChangesetDetailPanel());
29 }
30}
Note: See TracBrowser for help on using the repository browser.