source: josm/trunk/test/unit/org/openstreetmap/josm/gui/MapStatusTest.java@ 16159

Last change on this file since 16159 was 14604, checked in by Don-vip, 5 years ago

tools update: awaitility 3.1.5, equalsverifier 3.1.2, jmockit 1.44, system-rules 1.19, wiremock 2.20, groovy 2.5.5, checkstyle 8.15, pmd 6.10, spotbugs 3.1.10

  • Property svn:eol-style set to native
File size: 928 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui;
3
4import org.junit.Rule;
5import org.junit.Test;
6import org.openstreetmap.josm.TestUtils;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10import nl.jqno.equalsverifier.EqualsVerifier;
11
12/**
13 * Test {@link MapStatus}
14 */
15public class MapStatusTest {
16
17 /**
18 * Setup test.
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules();
23
24 /**
25 * Unit test of methods {@link MapStatus.StatusTextHistory#equals} and {@link MapStatus.StatusTextHistory#hashCode}.
26 */
27 @Test
28 public void testEqualsContract() {
29 TestUtils.assumeWorkingEqualsVerifier();
30 EqualsVerifier.forClass(MapStatus.StatusTextHistory.class)
31 .withIgnoredFields("text").verify();
32 }
33}
Note: See TracBrowser for help on using the repository browser.