diff options
Diffstat (limited to 'test/org/traccar/protocol/Xt013ProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Xt013ProtocolDecoderTest.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/org/traccar/protocol/Xt013ProtocolDecoderTest.java b/test/org/traccar/protocol/Xt013ProtocolDecoderTest.java deleted file mode 100644 index aa44929ab..000000000 --- a/test/org/traccar/protocol/Xt013ProtocolDecoderTest.java +++ /dev/null @@ -1,25 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; - -public class Xt013ProtocolDecoderTest extends ProtocolTest { - - @Test - public void testDecode() throws Exception { - - Xt013ProtocolDecoder decoder = new Xt013ProtocolDecoder(null); - - verifyPosition(decoder, text( - "TK,862950021650364,150131090859,+53.267863,+5.767363,0,38,12,0,F,204,08,C94,336C,24,,4.09,1,,,,,,,,"), - position("2015-01-31 09:08:59.000", true, 53.26786, 5.76736)); - - verifyPosition(decoder, text( - "TK,862950021650364,150118113832,+53.267722,+5.767143,0,86,12,0,F,204,08,C94,336C,22,,4.21,1,,,,,,,,")); - - verifyPosition(decoder, text( - "HI,862950021650364TK,862950021650364,150118113832,+53.267722,+5.767143,0,86,12,0,F,204,08,C94,336C,22,,4.21,1,,,,,,,,")); - - } - -} |