From 7471a8526945833ce68744e579d9b77f3145def1 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 23 Nov 2018 12:15:36 +1300 Subject: Implement C2STEK protocol --- .../traccar/protocol/C2stekProtocolDecoderTest.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/org/traccar/protocol/C2stekProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/C2stekProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/C2stekProtocolDecoderTest.java b/test/org/traccar/protocol/C2stekProtocolDecoderTest.java new file mode 100644 index 000000000..0a5690f76 --- /dev/null +++ b/test/org/traccar/protocol/C2stekProtocolDecoderTest.java @@ -0,0 +1,21 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class C2stekProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + C2stekProtocolDecoder decoder = new C2stekProtocolDecoder(null); + + verifyPosition(decoder, text( + "PA$353990030327618$D#091117#020928#1#22.537222#114.020948#0.00#0.0#42.1#4183#011#1#101#Wsz-wl001#B0101940#C+3.0,-5.0,+2.0$AP")); + + verifyNull(decoder, text( + "PA$863083030602124$20$AP")); + + } + +} -- cgit v1.2.3