diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-09-21 20:30:51 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-09-21 20:30:51 +1200 |
commit | 02d5eb894a4c5f5fe8270303af2c8ba4be03b530 (patch) | |
tree | 8efefc33cea95b43b1094804c7879c8dbea684f8 /test/org/traccar | |
parent | ed822c06151973668d37c98ad2856b8a8834da1a (diff) | |
download | trackermap-server-02d5eb894a4c5f5fe8270303af2c8ba4be03b530.tar.gz trackermap-server-02d5eb894a4c5f5fe8270303af2c8ba4be03b530.tar.bz2 trackermap-server-02d5eb894a4c5f5fe8270303af2c8ba4be03b530.zip |
Implement SmartSole protocol
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/protocol/SmartSoleProtocolDecoderTest.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/SmartSoleProtocolDecoderTest.java b/test/org/traccar/protocol/SmartSoleProtocolDecoderTest.java new file mode 100644 index 000000000..63600c7a2 --- /dev/null +++ b/test/org/traccar/protocol/SmartSoleProtocolDecoderTest.java @@ -0,0 +1,21 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class SmartSoleProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + SmartSoleProtocolDecoder decoder = new SmartSoleProtocolDecoder(new SmartSoleProtocol()); + + verifyPosition(decoder, text( + "#GTXRP=359366080000385,8,180514200051,34.041981,-118.255806,60,1,1,7,1.80,180514200051,4.16,11")); + + verifyPosition(decoder, text( + "#GTXRP=359372090000290,11,180919105751,46.477173,6.445475,389,0,0,0,1.08,180919105751,4.10,10")); + + } + +} |