diff options
author | michaelloliveira <michaelloliveira@gmail.com> | 2018-05-30 19:45:35 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 19:45:35 -0300 |
commit | f684ed7b8fb51c99c47eaa961018b9ec51da2c2f (patch) | |
tree | f1828e29d7e6c67c3a905efbb9756d261677a673 /SviasProtocolDecoderTest.java | |
parent | 607123610018cdc1f0e391fec43e54e769d40a06 (diff) | |
download | trackermap-server-f684ed7b8fb51c99c47eaa961018b9ec51da2c2f.tar.gz trackermap-server-f684ed7b8fb51c99c47eaa961018b9ec51da2c2f.tar.bz2 trackermap-server-f684ed7b8fb51c99c47eaa961018b9ec51da2c2f.zip |
Add files via upload
Diffstat (limited to 'SviasProtocolDecoderTest.java')
-rw-r--r-- | SviasProtocolDecoderTest.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/SviasProtocolDecoderTest.java b/SviasProtocolDecoderTest.java new file mode 100644 index 000000000..b80ca38d4 --- /dev/null +++ b/SviasProtocolDecoderTest.java @@ -0,0 +1,18 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class SviasProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + SviasProtocolDecoder decoder = new SviasProtocolDecoder(new SviasProtocol()); + + verifyPosition(decoder, text( + "7051,3041,1121,30179295,710,300518,40443,-93429140,-354560540,0,23437,3983,0,1,0,0,12433,100,22,32,4898")); + + } + +} |