Changeset 11772 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2017-03-23T00:01:04+01:00 (8 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui/widgets
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/widgets/AutoAdjustingSplitPaneTest.java
r11770 r11772 1 1 // License: GPL. For details, see LICENSE file. 2 package org.openstreetmap.josm.gui. conflict.tags;2 package org.openstreetmap.josm.gui.widgets; 3 3 4 4 import static org.junit.Assert.assertEquals; … … 10 10 import org.junit.Rule; 11 11 import org.junit.Test; 12 import org.openstreetmap.josm.gui.conflict.tags.CombinePrimitiveResolverDialog.AutoAdjustingSplitPane;13 12 import org.openstreetmap.josm.testutils.JOSMTestRules; 14 13 … … 16 15 17 16 /** 18 * Unit tests of {@link CombinePrimitiveResolverDialog} class.17 * Unit tests of {@link AutoAdjustingSplitPane} class. 19 18 */ 20 public class CombinePrimitiveResolverDialogTest {19 public class AutoAdjustingSplitPaneTest { 21 20 22 21 /** … … 28 27 29 28 /** 30 * Unit test of {@link CombinePrimitiveResolverDialog.AutoAdjustingSplitPane} class.29 * Unit test of {@link AutoAdjustingSplitPane} class. 31 30 */ 32 31 @Test 33 32 public void testAutoAdjustingSplitPane() { 34 AutoAdjustingSplitPane pane = new CombinePrimitiveResolverDialog.AutoAdjustingSplitPane(JSplitPane.VERTICAL_SPLIT);33 AutoAdjustingSplitPane pane = new AutoAdjustingSplitPane(JSplitPane.VERTICAL_SPLIT); 35 34 assertEquals(-1, pane.getDividerLocation()); 36 35 assertEquals(0, pane.getHeight());
Note:
See TracChangeset
for help on using the changeset viewer.