diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-05 14:04:08 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-05 14:04:08 +1300 |
commit | 08dc9eb08cf5a1f3c474d4ac5e421db4259ec92e (patch) | |
tree | 64d4b1006bd77533524a552fb81dae2832b1a4ec /test/org | |
parent | 8598581c0bdfc7e5ca842da7363e107232943849 (diff) | |
download | trackermap-server-08dc9eb08cf5a1f3c474d4ac5e421db4259ec92e.tar.gz trackermap-server-08dc9eb08cf5a1f3c474d4ac5e421db4259ec92e.tar.bz2 trackermap-server-08dc9eb08cf5a1f3c474d4ac5e421db4259ec92e.zip |
Refactor SunTech protocol decoder
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/SuntechProtocolDecoderTest.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/org/traccar/protocol/SuntechProtocolDecoderTest.java b/test/org/traccar/protocol/SuntechProtocolDecoderTest.java index 1632b391a..d0987f289 100644 --- a/test/org/traccar/protocol/SuntechProtocolDecoderTest.java +++ b/test/org/traccar/protocol/SuntechProtocolDecoderTest.java @@ -14,13 +14,15 @@ public class SuntechProtocolDecoderTest extends ProtocolDecoderTest { "SA200ALV;317652")); verifyPosition(decoder, text( - "ST910;Alert;123456;410;20141018;18:30:12;+37.478774;+126.889690;000.000;000.00;0;4.0;1;6002")); + "ST910;Alert;123456;410;20141018;18:30:12;+37.478774;+126.889690;000.000;000.00;0;4.0;1;6002"), + position("2014-10-18 18:30:12.000", true, 37.47877, 126.88969)); verifyPosition(decoder, text( "ST910;Alert;123456;410;20141018;18:30:12;+37.478774;+126.889690;000.000;000.00;0;4.0;1;6002;02;0;0310000100;450;01;-282;70;255;3;0")); verifyPosition(decoder, text( - "SA200STT;317652;042;20120718;15:37:12;16d41;-15.618755;-056.083241;000.024;000.00;8;1;41548;12.17;100000;2;1979")); + "SA200STT;317652;042;20120718;15:37:12;16d41;-15.618755;-056.083241;000.024;000.00;8;1;41548;12.17;100000;2;1979"), + position("2012-07-18 15:37:12.000", true, -15.61876, -56.08324)); verifyPosition(decoder, text( "SA200STT;317652;042;20120721;19:04:30;16d41;-15.618743;-056.083221;000.001;000.00;12;1;41557;12.21;000000;1;3125")); |