diff options
author | Ivan Muratov <binakot@gmail.com> | 2017-07-14 09:39:40 +0300 |
---|---|---|
committer | Ivan Muratov <binakot@gmail.com> | 2017-07-14 09:39:40 +0300 |
commit | 1af08aed1a880d30a16d8ab66b65ab56b5a53f4a (patch) | |
tree | 19a68cd6de1909a92974655947819d0fafbda575 /test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java | |
parent | f643173b6b2c52a3896d6ee13578edd86f9eb3e7 (diff) | |
parent | 01ec19f81270e38451e6a8b898abb22d6a2a3994 (diff) | |
download | trackermap-server-1af08aed1a880d30a16d8ab66b65ab56b5a53f4a.tar.gz trackermap-server-1af08aed1a880d30a16d8ab66b65ab56b5a53f4a.tar.bz2 trackermap-server-1af08aed1a880d30a16d8ab66b65ab56b5a53f4a.zip |
Merge branch 'master' into anravi4_fix
Diffstat (limited to 'test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java b/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java index 2395572a1..d789b1c9c 100644 --- a/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java +++ b/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java @@ -5,13 +5,10 @@ import org.traccar.ProtocolTest; import java.nio.ByteOrder; -/** - * Created by Ivan Muratov @binakot on 11.07.2017. - */ public class Arnavi4ProtocolDecoderTest extends ProtocolTest { @Test - public void testDecode() throws Exception { + public void testHeader1Decode() throws Exception { Arnavi4ProtocolDecoder decoder; @@ -23,6 +20,12 @@ public class Arnavi4ProtocolDecoderTest extends ProtocolTest { verifyPositions(decoder, binary(ByteOrder.LITTLE_ENDIAN, // Valid PACKAGE packet with one DATA packet "5b01012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa37010000295d"), position("2017-07-07 05:09:55.000", true, 45.05597, 39.03347)); + } + + @Test + public void testHeader2Decode() throws Exception { + + Arnavi4ProtocolDecoder decoder; decoder = new Arnavi4ProtocolDecoder(new Arnavi4Protocol()); |