source: josm/trunk/test/unit/org/openstreetmap/josm/io/NmeaReaderTest.java@ 9504

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

add more unit tests

File size: 526 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4import org.junit.Test;
5import org.openstreetmap.josm.io.NmeaReader.NMEA_TYPE;
6
7import nl.jqno.equalsverifier.EqualsVerifier;
8
9/**
10 * Unit tests of {@link NmeaReader} class.
11 */
12public class NmeaReaderTest {
13
14 /**
15 * Unit test of methods {@link NMEA_TYPE#equals} and {@link NMEA_TYPE#hashCode}.
16 */
17 @Test
18 public void equalsContract() {
19 EqualsVerifier.forClass(NMEA_TYPE.class).verify();
20 }
21}
Note: See TracBrowser for help on using the repository browser.