From ddc9dbefd717b1b037a4397e55dae34bf13598c0 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 21 Jan 2015 12:29:32 +1300 Subject: Implement XT013 support (fix #1035) --- .../traccar/protocol/Xt013ProtocolDecoderTest.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/org/traccar/protocol/Xt013ProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/Xt013ProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/Xt013ProtocolDecoderTest.java b/test/org/traccar/protocol/Xt013ProtocolDecoderTest.java new file mode 100644 index 000000000..db375ad19 --- /dev/null +++ b/test/org/traccar/protocol/Xt013ProtocolDecoderTest.java @@ -0,0 +1,20 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.helper.TestDataManager; + +import static org.traccar.helper.DecoderVerifier.verify; + +public class Xt013ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + Xt013ProtocolDecoder decoder = new Xt013ProtocolDecoder(new TestDataManager(), null, null); + + verify(decoder.decode(null, null, + "TK,862950021650364,150118113832,+53.267722,+5.767143,0,86,12,0,F,204,08,C94,336C,22,,4.21,1,,,,,,,,")); + + } + +} -- cgit v1.2.3