source: josm/trunk/test/unit/org/openstreetmap/josm/tools/MultiMapTest.java@ 9635

Last change on this file since 9635 was 9399, checked in by Don-vip, 8 years ago

add unit test

File size: 482 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools;
3
4import org.junit.Test;
5
6import nl.jqno.equalsverifier.EqualsVerifier;
7
8/**
9 * Unit tests of {@link MultiMap} class.
10 */
11public class MultiMapTest {
12
13 /**
14 * Unit test of methods {@link MultiMap#equals} and {@link MultiMap#hashCode}.
15 */
16 @Test
17 public void equalsContract() {
18 EqualsVerifier.forClass(MultiMap.class).usingGetClass().verify();
19 }
20}
Note: See TracBrowser for help on using the repository browser.