From 051ef2354038f1bf15d254c5d7630131a4ff37c2 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 16 Jul 2015 16:54:03 +1200 Subject: Implement GPS Maker protocol --- .../protocol/GpsMarkerProtocolDecoderTest.java | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/org/traccar/protocol/GpsMarkerProtocolDecoderTest.java (limited to 'test/org/traccar/protocol') 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#")); + + } + +} -- cgit v1.2.3