source: josm/trunk/test/unit/org/openstreetmap/josm/data/gpx/ImmutableGpxTrackSegmentTest.java@ 11241

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

add more non-regression NMEA unit tests

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4import org.junit.Rule;
5import org.junit.Test;
6import org.openstreetmap.josm.data.coor.LatLon;
7import org.openstreetmap.josm.testutils.JOSMTestRules;
8
9import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
10import nl.jqno.equalsverifier.EqualsVerifier;
11
12/**
13 * Unit tests for class {@link ImmutableGpxTrackSegment}.
14 */
15public class ImmutableGpxTrackSegmentTest {
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 ImmutableGpxTrackSegment#equals} and {@link ImmutableGpxTrackSegment#hashCode}.
26 */
27 @Test
28 public void testEqualsContract() {
29 EqualsVerifier.forClass(ImmutableGpxTrackSegment.class).usingGetClass()
30 .withIgnoredFields("bounds", "length")
31 .withPrefabValues(WayPoint.class, new WayPoint(LatLon.NORTH_POLE), new WayPoint(LatLon.SOUTH_POLE))
32 .verify();
33 }
34}
Note: See TracBrowser for help on using the repository browser.