source: josm/trunk/test/unit/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheTableColumnModelTest.java

Last change on this file 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: 519 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.junit.jupiter.api.Test;
7
8/**
9 * Unit tests of {@link ChangesetCacheTableColumnModel} class.
10 */
11class ChangesetCacheTableColumnModelTest {
12 /**
13 * Unit test of {@link ChangesetCacheTableColumnModel}.
14 */
15 @Test
16 void testChangesetCacheTableColumnModel() {
17 assertNotNull(new ChangesetCacheTableColumnModel());
18 }
19}
Note: See TracBrowser for help on using the repository browser.