Ignore:
Timestamp:
2017-11-04T20:27:56+01:00 (6 years ago)
Author:
Don-vip
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/command/RotateCommandTest.java

    r12726 r13079  
    1111import org.junit.Rule;
    1212import org.junit.Test;
     13import org.openstreetmap.josm.TestUtils;
    1314import org.openstreetmap.josm.command.CommandTest.CommandTestData;
    1415import org.openstreetmap.josm.data.coor.EastNorth;
     
    136137    @Test
    137138    public void testEqualsContract() {
     139        TestUtils.assumeWorkingEqualsVerifier();
    138140        EqualsVerifier.forClass(RotateCommand.class).usingGetClass()
    139141                .withPrefabValues(LatLon.class, LatLon.ZERO, new LatLon(45, 45))
Note: See TracChangeset for help on using the changeset viewer.