aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java b/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java
deleted file mode 100644
index 83caae208..000000000
--- a/test/org/traccar/protocol/Tlt2hProtocolDecoderTest.java
+++ /dev/null
@@ -1,64 +0,0 @@
-package org.traccar.protocol;
-
-import org.junit.Test;
-import org.traccar.ProtocolTest;
-
-public class Tlt2hProtocolDecoderTest extends ProtocolTest {
-
- @Test
- public void testDecode() throws Exception {
-
- Tlt2hProtocolDecoder decoder = new Tlt2hProtocolDecoder(null);
-
- verifyPositions(decoder, text(
- "#867962040161955#MT600#0000#0#0#137#41#0#AUTO#1\r\n" +
- "#00019023402$GPRMC,084702.00,A,3228.6772,S,11545.9684,E,,159.80,251018,,,A*56\r\n"));
-
- verifyPositions(decoder, text(
- "#868323028789359#MT600#0000#AUTOLOW#1\r\n",
- "#07d8cd5198$GPRMC,164934.00,A,1814.4854,N,09926.0566,E,0.03,,240417,,,A*4A\r\n"));
-
- verifyNull(decoder, text(
- "#861075026000000#\r\n",
- "#0000#AUTO#1\r\n",
- "#002c4968045$GPRMC,001556.00,A,3542.1569,N,13938.9814,E,7.38,185.71,160417,,,A*55\r\n"));
-
- verifyPositions(decoder, text(
- "#863835026938048#MT500#0000#AUTO#1\r\n",
- "#67904917c0e$GPRMC,173926.00,A,4247.8476,N,08342.6996,W,0.03,,160417,,,A*59\r\n"));
-
- verifyPositions(decoder, text(
- "#357671030108689##0000#AUTO#1\r\n",
- "#13AE2F8F$GPRMC,211452.000,A,0017.378794,S,03603.441981,E,0.000,0,060216,,,A*68\r\n"));
-
- verifyPositions(decoder, text(
- "#357671030946351#V500#0000#AUTO#1\r\n",
- "#$GPRMC,223835.000,A,0615.3545,S,10708.5779,E,14.62,97.41,070313,,,D*70\r\n"),
- position("2013-03-07 22:38:35.000", true, -6.25591, 107.14297));
-
- verifyPositions(decoder, text(
- "\r\n#357671030946351#V500#0000#AUTO#1\r\n",
- "#$GPRMC,223835.000,A,0615.3545,S,10708.5779,E,14.62,97.41,070313,,,D*70\r\n"));
-
- verifyPositions(decoder, text(
- "#357671030938911#V500#0000#AUTOSTOP#1\r\n",
- "#00b34d3c$GPRMC,140026.000,A,2623.6452,S,02828.8990,E,0.00,65.44,130213,,,A*4B\r\n"));
-
- verifyPositions(decoder, text(
- "#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"));
-
- verifyPositions(decoder, text(
- "#353686009063310#353686009063310#0000#AUTO#2\r\n",
- "#239757a9$GPRMC,150252.001,A,2326.6856,S,4631.8154,W,,,260513,,,A*52\r\n",
- "#239757a9$GPRMC,150322.001,A,2326.6854,S,4631.8157,W,,,260513,,,A*55"));
-
- verifyPositions(decoder, text(
- "#357671031289215#V600#0000#AUTOLOW#1\r\n",
- "#00735e1c$GPRMC,115647.000,A,5553.6524,N,02632.3128,E,0.00,0.0,130614,0.0,W,A*28"));
-
- }
-
-}