aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
diff options
context:
space:
mode:
authorIvan Muratov <binakot@gmail.com>2017-07-14 09:36:06 +0300
committerIvan Muratov <binakot@gmail.com>2017-07-14 09:36:06 +0300
commit01ec19f81270e38451e6a8b898abb22d6a2a3994 (patch)
tree19a68cd6de1909a92974655947819d0fafbda575 /test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java
parenta2376cf6354a94c8bd8c8e13c4e78936d4f2ae97 (diff)
parenta71dd10a966b491c64232180a2075450f0a258db (diff)
downloadtrackermap-server-01ec19f81270e38451e6a8b898abb22d6a2a3994.tar.gz
trackermap-server-01ec19f81270e38451e6a8b898abb22d6a2a3994.tar.bz2
trackermap-server-01ec19f81270e38451e6a8b898abb22d6a2a3994.zip
Merge branch 'arnavi4_remarks'
Diffstat (limited to 'test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/Arnavi4ProtocolDecoderTest.java11
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());