From 8f6f1aae2afb02ac9de3577798fc2e837f18a651 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 10 Feb 2013 13:08:35 +1300 Subject: Added TLT-2H protocol support --- .../traccar/protocol/Tlt2hProtocolDecoderTest.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java b/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java new file mode 100644 index 000000000..9c2324be7 --- /dev/null +++ b/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java @@ -0,0 +1,22 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class Tlt2hProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + Tlt2hProtocolDecoder decoder = new Tlt2hProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNotNull(decoder.decode(null, null, + "#123456789000001#V3338#0000#SMS#3\r\n" + + "#25ee0dff$GPRMC,083945.180,A,2233.4249,N,11406.0046,E,0.00,315.00,251207,,,A*6E\r\n" + + "#25ee0dff$GPRMC,083950.180,A,2233.4249,N,11406.0046,E,0.00,315.00,251207,,,A*6E\r\n" + + "#25ee0dff$GPRMC,083955.180,A,2233.4249,N,11406.0046,E,0.00,315.00,251207,,,A*6E")); + + } + +} -- cgit v1.2.3