From 208312ce478f94c44d9020625edc6cd1a26fa00f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 28 Apr 2013 12:59:54 +1200 Subject: Add Carscop protocol --- .../protocol/CarscopProtocolDecoderTest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/org/traccar/protocol/CarscopProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/CarscopProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/CarscopProtocolDecoderTest.java b/test/org/traccar/protocol/CarscopProtocolDecoderTest.java new file mode 100644 index 000000000..63e27f738 --- /dev/null +++ b/test/org/traccar/protocol/CarscopProtocolDecoderTest.java @@ -0,0 +1,26 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import org.junit.Test; + +public class CarscopProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + CarscopProtocolDecoder decoder = new CarscopProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNotNull(decoder.decode(null, null, + "*040331141830UB05123456789012345061825A2934.0133N10627.2544E000.0040331309.6200000000L000000")); + + assertNotNull(decoder.decode(null, null, + "*040331141830UB04999999984061825A2934.0133N10627.2544E000.0040331309.6200000000L000000")); + + assertNotNull(decoder.decode(null, null, + "*040331141830UA012Hi-jack061825A2934.0133N10627.2544E000.0040331309.6200000000L000000")); + + } + +} -- cgit v1.2.3