diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2013-07-24 19:00:01 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2013-07-24 19:00:01 +1200 |
commit | a9fbc36ba173573aabd581e7a14f32ce0af69cb6 (patch) | |
tree | 7e8ed79632571b99861f46b41a0311b5cf8f2e91 /test/org | |
parent | bf7be45a144d26ecc213b398b0625e06b5c00bc6 (diff) | |
download | traccar-server-a9fbc36ba173573aabd581e7a14f32ce0af69cb6.tar.gz traccar-server-a9fbc36ba173573aabd581e7a14f32ce0af69cb6.tar.bz2 traccar-server-a9fbc36ba173573aabd581e7a14f32ce0af69cb6.zip |
Improve Xexun2 decoder
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/Xexun2ProtocolDecoderTest.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/Xexun2ProtocolDecoderTest.java b/test/org/traccar/protocol/Xexun2ProtocolDecoderTest.java index c9b97684c..f6c967039 100644 --- a/test/org/traccar/protocol/Xexun2ProtocolDecoderTest.java +++ b/test/org/traccar/protocol/Xexun2ProtocolDecoderTest.java @@ -25,6 +25,16 @@ public class Xexun2ProtocolDecoderTest { assertNotNull(decoder.decode(null, null, "111111120009,436763737552,GPRMC,120600.000,A,6000.0000,N,13000.0000,E,0.00,0.00,010112,,,A*68,F,help me!, imei:123456789012345,04,481.2,L:3.5V,0,139,2689,232,03,2725,0576")); + + assertNotNull(decoder.decode(null, null, + "111111120009,+1234,GPRMC,204530.4,A,6000.0000,N,13000.0000,E,0.0,,010112,0.0,E,A*68,F,imei:123456789012345,04,123.5,F:3.55V,0,139,,232,03,272CE1,0576")); + + assertNotNull(decoder.decode(null, null, + "111111120009,+1234,GPRMC,204530.4,A,6000.000,N,01000.6288,E,0.0,0.00,230713,0.0,E,A*3C,F,imei:123456789012345,00,,F:3.88V,0,125,,262,01,224CE1,379B")); + + assertNotNull(decoder.decode(null, null, + "111111120009,+1234,GPRMC,215840.7,A,6000.000,N,01000.6253,E,0.0,0.00,230713,0.0,E,A*34,F,imei:123456789012345,00,,F:3.9V,0,124,,262,01,224CE1,379B")); + } } |