diff options
author | Alexandre Truppel <alex.truppel@gmail.com> | 2023-02-22 16:05:21 +0100 |
---|---|---|
committer | Alexandre Truppel <alex.truppel@gmail.com> | 2023-02-22 16:05:21 +0100 |
commit | 47398e91b1450c744cf3ed31de46f7ea02bbede1 (patch) | |
tree | 6408121a872d7821e54b37fe16ce37fd351c7212 /src/test | |
parent | 6c4f99117bbd3645f3b55852b2148beb28c1e0f9 (diff) | |
download | trackermap-server-47398e91b1450c744cf3ed31de46f7ea02bbede1.tar.gz trackermap-server-47398e91b1450c744cf3ed31de46f7ea02bbede1.tar.bz2 trackermap-server-47398e91b1450c744cf3ed31de46f7ea02bbede1.zip |
Review
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/java/org/traccar/protocol/WialonProtocolDecoderTest.java | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/test/java/org/traccar/protocol/WialonProtocolDecoderTest.java b/src/test/java/org/traccar/protocol/WialonProtocolDecoderTest.java index e25ff7f9e..0a47edcb4 100644 --- a/src/test/java/org/traccar/protocol/WialonProtocolDecoderTest.java +++ b/src/test/java/org/traccar/protocol/WialonProtocolDecoderTest.java @@ -78,15 +78,8 @@ public class WialonProtocolDecoderTest extends ProtocolTest { verifyPositions(decoder, text( "#B#110315;045857;5364.0167;N;06127.8262;E;0;155;965;7;2.40;4;0;14.77,0.02,3.6;AB45DF01145;")); - verifyAttributes(decoder, text( - "#D#120319;112003;NA;NA;NA;NA;0.000;NA;NA;0;NA;NA;NA;NA;NA;motion:3:true")); - - verifyAttributes(decoder, text( - "#D#120319;112003;NA;NA;NA;NA;0.000;NA;NA;0;NA;NA;NA;NA;NA;motion:3:false")); - - Position p = (Position)decoder.decode(null, null, text( - "#D#120319;112003;NA;NA;NA;NA;0.000;NA;NA;0;NA;NA;NA;NA;NA;accuracy:2:12.3")); - assertEquals(p.getAccuracy(), 12.3, 0.001); + verifyAttribute(decoder, text( + "#D#120319;112003;NA;NA;NA;NA;0.000;NA;NA;0;NA;NA;NA;NA;NA;motion:3:false"), "motion", false); } } |