// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.data.correction; import org.junit.Rule; import org.junit.Test; import org.openstreetmap.josm.testutils.JOSMTestRules; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import nl.jqno.equalsverifier.EqualsVerifier; /** * Unit tests for class {@link TagCorrection}. */ public class TagCorrectionTest { /** * Setup test. */ @Rule @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") public JOSMTestRules test = new JOSMTestRules(); /** * Unit test of methods {@link TagCorrection#equals} and {@link TagCorrection#hashCode}. */ @Test public void testEqualsContract() { EqualsVerifier.forClass(TagCorrection.class).usingGetClass().verify(); } }