Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/tools/MultiMapTest.java
- Timestamp:
- 2020-10-28T20:41:00+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/MultiMapTest.java
r15870 r17275 2 2 package org.openstreetmap.josm.tools; 3 3 4 import static org.junit. Assert.assertEquals;5 import static org.junit. Assert.assertFalse;6 import static org.junit. Assert.assertNull;7 import static org.junit. Assert.assertTrue;4 import static org.junit.jupiter.api.Assertions.assertEquals; 5 import static org.junit.jupiter.api.Assertions.assertFalse; 6 import static org.junit.jupiter.api.Assertions.assertNull; 7 import static org.junit.jupiter.api.Assertions.assertTrue; 8 8 9 9 import java.util.Arrays; … … 13 13 import java.util.Set; 14 14 15 import org.junit.Test; 15 import org.junit.jupiter.api.Test; 16 16 import org.openstreetmap.josm.TestUtils; 17 17 … … 21 21 * Unit tests of {@link MultiMap} class. 22 22 */ 23 publicclass MultiMapTest {23 class MultiMapTest { 24 24 25 25 /** … … 27 27 */ 28 28 @Test 29 publicvoid testEqualsContract() {29 void testEqualsContract() { 30 30 TestUtils.assumeWorkingEqualsVerifier(); 31 31 EqualsVerifier.forClass(MultiMap.class).usingGetClass().verify(); … … 36 36 */ 37 37 @Test 38 publicvoid testMultiMap() {38 void testMultiMap() { 39 39 final MultiMap<String, String> map = new MultiMap<>(); 40 40 assertTrue(map.isEmpty());
Note:
See TracChangeset
for help on using the changeset viewer.
