source: josm/trunk/test/unit/org/openstreetmap/josm/spi/preferences/MapListSettingTest.java@ 13079

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

see #15560 - EqualsVerifier does not work with newer Java versions -> disable tests automatically in this case
Workaround to https://github.com/jqno/equalsverifier/issues/177 / https://github.com/raphw/byte-buddy/issues/370
Inspired by https://issues.apache.org/jira/browse/SOLR-11606

  • Property svn:eol-style set to native
File size: 977 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.spi.preferences;
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 MapListSetting}.
14 */
15public class MapListSettingTest {
16 /**
17 * This is a preference test
18 */
19 @Rule
20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
21 public JOSMTestRules test = new JOSMTestRules().preferences();
22
23 /**
24 * Unit test of methods {@link MapListSetting#equals} and {@link MapListSetting#hashCode}.
25 */
26 @Test
27 public void testEqualsContract() {
28 TestUtils.assumeWorkingEqualsVerifier();
29 EqualsVerifier.forClass(MapListSetting.class).usingGetClass()
30 .withIgnoredFields("isNew", "time")
31 .verify();
32 }
33}
Note: See TracBrowser for help on using the repository browser.