From a0ea4b0461296cd259604a9f5b8ed79e125b88f5 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 20 Apr 2014 17:08:58 +1200 Subject: Implement CarTrack protocol --- .../protocol/CarTrackProtocolDecoderTest.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/org/traccar/protocol/CarTrackProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/CarTrackProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java b/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java new file mode 100644 index 000000000..f40b45e01 --- /dev/null +++ b/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java @@ -0,0 +1,20 @@ +package org.traccar.protocol; + +import org.traccar.helper.TestDataManager; +import static org.traccar.helper.DecoderVerifier.verify; +import org.junit.Test; + +public class CarTrackProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + CarTrackProtocolDecoder decoder = new CarTrackProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + verify(decoder.decode(null, null, + "$$2222234???????&A9955&B102904.000,A,2233.0655,N,11404.9440,E,0.00,,030109,,*17|6.3|&C0100000100&D000024?>&E10000000&Y00100020")); + + } + +} -- cgit v1.2.3