From b444e789127951b902d557517a520d44c59f15d2 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 5 Dec 2012 22:56:14 +1300 Subject: Added meitrack protocol (fix #103) --- .../protocol/MeitrackProtocolDecoderTest.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/org/traccar/protocol/MeitrackProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/MeitrackProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/MeitrackProtocolDecoderTest.java b/test/org/traccar/protocol/MeitrackProtocolDecoderTest.java new file mode 100644 index 000000000..7261443d5 --- /dev/null +++ b/test/org/traccar/protocol/MeitrackProtocolDecoderTest.java @@ -0,0 +1,21 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class MeitrackProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + MeitrackProtocolDecoder decoder = new MeitrackProtocolDecoder(new TestDataManager()); + + assertNotNull(decoder.decode(null, null, + "$$]138,012896000475498,AAA,35,-6.138255,106.910545,121205074600,A,5,18,0,0,0,49,3800,24826,510|10|0081|4F4F,0000,0011|0012|0010|0963|0000,,*94")); + + assertNotNull(decoder.decode(null, null, + "$$d138,012896000475498,AAA,35,-6.138255,106.910545,121205074819,A,7,18,0,0,0,49,3800,24965,510|10|0081|4F4F,0000,000D|0010|0012|0963|0000,,*BF")); + + } + +} -- cgit v1.2.3