source: josm/trunk/test/unit/org/openstreetmap/josm/command/conflict/WayNodesConflictResolverCommandTest.java@ 9328

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

add more unit tests

File size: 1.5 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.command.conflict;
3
4import org.junit.BeforeClass;
5import org.junit.Test;
6import org.openstreetmap.josm.JOSMFixture;
7import org.openstreetmap.josm.data.conflict.Conflict;
8import org.openstreetmap.josm.data.osm.DataSet;
9import org.openstreetmap.josm.data.osm.Node;
10import org.openstreetmap.josm.data.osm.Way;
11import org.openstreetmap.josm.gui.layer.OsmDataLayer;
12
13import nl.jqno.equalsverifier.EqualsVerifier;
14import nl.jqno.equalsverifier.Warning;
15
16/**
17 * Unit tests of {@link WayNodesConflictResolverCommand} class.
18 */
19public class WayNodesConflictResolverCommandTest {
20
21 /**
22 * Setup test.
23 */
24 @BeforeClass
25 public static void setUpBeforeClass() {
26 JOSMFixture.createUnitTestFixture().init(false);
27 }
28
29 /**
30 * Unit test of methods {@link WayNodesConflictResolverCommand#equals} and {@link WayNodesConflictResolverCommand#hashCode}.
31 */
32 @Test
33 public void equalsContract() {
34 EqualsVerifier.forClass(WayNodesConflictResolverCommand.class).usingGetClass()
35 .withPrefabValues(Conflict.class,
36 new Conflict<>(new Node(), new Node()), new Conflict<>(new Way(), new Way()))
37 .withPrefabValues(OsmDataLayer.class,
38 new OsmDataLayer(new DataSet(), "1", null), new OsmDataLayer(new DataSet(), "2", null))
39 .suppress(Warning.NONFINAL_FIELDS)
40 .verify();
41 }
42}
Note: See TracBrowser for help on using the repository browser.