Changeset 18221 in josm for trunk/test/unit
- Timestamp:
- 2021-09-13T00:41:53+02:00 (3 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditorTest.java
r18037 r18221 5 5 6 6 import org.junit.jupiter.api.Test; 7 import org.openstreetmap.josm.testutils.annotations.BasicPreferences; 7 8 8 9 /** 9 10 * Unit tests of {@link MultiValueCellEditor} class. 10 11 */ 12 @BasicPreferences 11 13 class MultiValueCellEditorTest { 12 14 /** -
trunk/test/unit/org/openstreetmap/josm/gui/tagging/presets/items/PresetListEntryTest.java
r17275 r18221 2 2 package org.openstreetmap.josm.gui.tagging.presets.items; 3 3 4 import static org.junit.jupiter.api.Assertions.assert Equals;4 import static org.junit.jupiter.api.Assertions.assertTrue; 5 5 6 6 import org.junit.jupiter.api.BeforeAll; … … 26 26 @Test 27 27 void testTicket12416() { 28 assert Equals(" ", new PresetListEntry("").getListDisplay());28 assertTrue(new PresetListEntry("").getListDisplay(200).contains(" ")); 29 29 } 30 30 }
Note:
See TracChangeset
for help on using the changeset viewer.