aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGavriel Fleischer <flocsy@gmail.com>2019-02-17 01:28:00 +0200
committerGavriel Fleischer <flocsy@gmail.com>2019-02-17 01:28:00 +0200
commit1e0e3a43894466246d6042ec71b9c01f63c58b13 (patch)
treebb45a9986590e1d4565f27d72e741387da00bafd /test
parent4b9aa8e7c98a3420a698b1520ee63060409c7d88 (diff)
downloadtraccar-server-1e0e3a43894466246d6042ec71b9c01f63c58b13.tar.gz
traccar-server-1e0e3a43894466246d6042ec71b9c01f63c58b13.tar.bz2
traccar-server-1e0e3a43894466246d6042ec71b9c01f63c58b13.zip
binary decoder test
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/WatchFrameDecoderTest.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/WatchFrameDecoderTest.java b/test/org/traccar/protocol/WatchFrameDecoderTest.java
index 741807de2..4e40eea86 100644
--- a/test/org/traccar/protocol/WatchFrameDecoderTest.java
+++ b/test/org/traccar/protocol/WatchFrameDecoderTest.java
@@ -26,6 +26,10 @@ public class WatchFrameDecoderTest extends ProtocolTest {
binary("5b5a4a2a3031343131313030313335303330342a303033342a303030392a4c4b2c302c302c31395d"),
decoder.decode(null, null, binary("5b5a4a2a3031343131313030313335303330342a303033342a303030392a4c4b2c302c302c31395d")));
+ verifyFrame(
+ concatenateBuffers(buffer("[CS*1234567890*000e*TK,#!AMR"), binary("7d5b5d2c2aff"), buffer("]")),
+ decoder.decode(null, null, concatenateBuffers(buffer("[CS*1234567890*000e*TK,#!AMR"), binary("7d017d027d037d047d05ff"), buffer("]"))));
+
}
}