diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-02-21 11:04:48 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-02-21 11:04:48 +1300 |
commit | 63d3e629fd0b4d02b1885160e4289596cfd958c0 (patch) | |
tree | 61e0a0733a77a827f45d75dab57f9f07cc9e5979 /test/org/traccar/protocol/TelikProtocolDecoderTest.java | |
parent | 7eaf8d55da9b71d697c9307cbf79220df7a1535d (diff) | |
download | trackermap-server-63d3e629fd0b4d02b1885160e4289596cfd958c0.tar.gz trackermap-server-63d3e629fd0b4d02b1885160e4289596cfd958c0.tar.bz2 trackermap-server-63d3e629fd0b4d02b1885160e4289596cfd958c0.zip |
Rename telik protocol to telic
Diffstat (limited to 'test/org/traccar/protocol/TelikProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/TelikProtocolDecoderTest.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/org/traccar/protocol/TelikProtocolDecoderTest.java b/test/org/traccar/protocol/TelikProtocolDecoderTest.java deleted file mode 100644 index 180ab1b3d..000000000 --- a/test/org/traccar/protocol/TelikProtocolDecoderTest.java +++ /dev/null @@ -1,25 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; - -public class TelikProtocolDecoderTest extends ProtocolTest { - - @Test - public void testDecode() throws Exception { - - TelikProtocolDecoder decoder = new TelikProtocolDecoder(new TelikProtocol()); - - verifyNothing(decoder, text( - "0026436729|232|01|003002030")); - - verifyPosition(decoder, text( - "182043672999,010100001301,0,270613041652,166653,475341,3,0,355,6,2,1,231,8112432,23201,01,00,217,0,0,0,0,7"), - position("2013-06-27 04:16:52.000", true, 47.53410, 16.66530)); - - verifyPosition(decoder, text( - "182043672999,010100001301,0,270613041652,166653,475341,3,0,355,6,2,1,231,8112432,23201,01,00,217,0,0,0,0,7")); - - } - -} |