diff options
author | michaelloliveira <michaelloliveira@gmail.com> | 2018-05-30 19:49:34 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 19:49:34 -0300 |
commit | 0327a676ec3c46859145f6220e9ca9f87b6d0c8d (patch) | |
tree | 6e6a3ad4e6725437512ffc8ad24b5a6c11b88a74 /test/org/traccar/protocol | |
parent | 015116991389643865bcdc35ea6e247eb6cb3ba1 (diff) | |
download | trackermap-server-0327a676ec3c46859145f6220e9ca9f87b6d0c8d.tar.gz trackermap-server-0327a676ec3c46859145f6220e9ca9f87b6d0c8d.tar.bz2 trackermap-server-0327a676ec3c46859145f6220e9ca9f87b6d0c8d.zip |
Svias Protocol Encoder Test
Diffstat (limited to 'test/org/traccar/protocol')
-rw-r--r-- | test/org/traccar/protocol/SviasProtocolDecoderTest.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/SviasProtocolDecoderTest.java b/test/org/traccar/protocol/SviasProtocolDecoderTest.java new file mode 100644 index 000000000..b80ca38d4 --- /dev/null +++ b/test/org/traccar/protocol/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")); + + } + +} |