aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/CarTrackProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/CarTrackProtocolDecoderTest.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java b/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java
deleted file mode 100644
index c8db07ee3..000000000
--- a/test/org/traccar/protocol/CarTrackProtocolDecoderTest.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package org.traccar.protocol;
-
-import org.junit.Test;
-import org.traccar.ProtocolTest;
-
-public class CarTrackProtocolDecoderTest extends ProtocolTest {
-
- @Test
- public void testDecode() throws Exception {
-
- CarTrackProtocolDecoder decoder = new CarTrackProtocolDecoder(null);
-
- verifyNull(decoder, text(
- "$$020040????????&A0000"));
-
- verifyPosition(decoder, text(
- "$$020040????????&A9955&B011939.000,A,4436.3804,N,02606.9434,E,0.00,0.00,190317,,,A*64|0.9|&C0100000000&D01830=?6&E00000001&Y00000000"));
-
- verifyPosition(decoder, text(
- "$$2222234???????&A9955&B102904.000,A,2233.0655,N,11404.9440,E,0.00,,030109,,*17|6.3|&C0100000100&D000024?>&E10000000"),
- position("2009-01-03 10:29:04.000", true, 22.55109, 114.08240));
-
- verifyPosition(decoder, text(
- "$$2222234???????&A9955&B102904.000,A,2233.0655,N,11404.9440,E,0.00,,030109,,*17|6.3|&C0100000100&D000024?>&E10000000&Y00100020"));
-
- verifyPosition(decoder, text(
- "$$2222234???????&A9955&B102904.000,A,2233.0655,N,11404.9440,E,0.00,,030109,,*17|6.3|&C0100000100&D000024?>&E10000000"));
-
-
- }
-
-}