diff options
Diffstat (limited to 'test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java b/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java deleted file mode 100644 index 0f15f31b4..000000000 --- a/test/org/traccar/protocol/Xrb28ProtocolDecoderTest.java +++ /dev/null @@ -1,33 +0,0 @@ -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); - - verifyAttributes(decoder, text( - "*SCOR,OM,123456789123456,Q0,412,80,28#")); - - verifyPosition(decoder, text( - "*SCOR,OM,867584030387299,D0,0,012102.00,A,0608.00062,S,10659.70331,E,12,0.69,151118,30.3,M,A#")); - - verifyAttributes(decoder, text( - "*SCOR,OM,863158022988725,H0,0,412,28,80,0#")); - - verifyAttributes(decoder, text( - "*HBCR,OM,123456789123456,R0,0,55,1234,1497689816#")); - - verifyPosition(decoder, text( - "*HBCR,OM,123456789123456,D0,0,124458.00,A,2237.7514,N,11408.6214,E,6,0.21,151216,10,M,A#")); - - verifyPosition(decoder, text( - "*SCOR,OM,863158022988725,D0,0,124458.00,A,2237.7514,N,11408.6214,E,6,0.21,151216,10,M,A#")); - - } - -} |