diff options
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java b/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java new file mode 100644 index 000000000..eb3ccfdb7 --- /dev/null +++ b/test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java @@ -0,0 +1,23 @@ +package org.traccar.protocol; + +import org.junit.Test; + +import static org.junit.Assert.assertNull; +import static org.traccar.helper.DecoderVerifier.verify; + +public class GpsMarkerProtocolDecoderTest extends ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + GpsMarkerProtocolDecoder decoder = new GpsMarkerProtocolDecoder(new GpsMarkerProtocol()); + + verify(decoder.decode(null, null, + "$GM1350123456789012T1005111233N55516789E03756123400000035200298#")); + + verify(decoder.decode(null, null, + "$GM203863071014445404T150715202258N55481576E03729275300000040530301#")); + + } + +} |