diff options
Diffstat (limited to 'test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java b/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java new file mode 100644 index 000000000..441d7b811 --- /dev/null +++ b/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java @@ -0,0 +1,24 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class Xrb28ProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + Xrb28ProtocolDecoder decoder = new Xrb28ProtocolDecoder(null); + + verifyNull(decoder, text( + "\u00ff\u00ff*HBCR,OM,123456789123456,Q0,412,80#")); + + verifyNull(decoder, text( + "\u00ff\u00ff*HBCR,OM,123456789123456,R0,0,55,1234,1497689816#")); + + verifyPosition(decoder, text( + "\u00ff\u00ff*HBCR,OM,123456789123456,D0,0,124458.00,A,2237.7514,N,11408.6214,E,6,0.21,151216,10,M,A#")); + + } + +} |