diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-03 11:22:24 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-03 11:22:24 +1300 |
commit | c27a9280838a20a18df2fdabbf5de1db85cab39d (patch) | |
tree | 5d16289d99ab2c69885eeed40efe6b6d997b956a /test/org | |
parent | 1268417e9052e36b899bd3f024aa99c01644c3f4 (diff) | |
download | trackermap-server-c27a9280838a20a18df2fdabbf5de1db85cab39d.tar.gz trackermap-server-c27a9280838a20a18df2fdabbf5de1db85cab39d.tar.bz2 trackermap-server-c27a9280838a20a18df2fdabbf5de1db85cab39d.zip |
Refactor Trackbox protocol decoder
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/TrackboxProtocolDecoderTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java b/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java index 08b17a130..a9987712c 100644 --- a/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java +++ b/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java @@ -13,7 +13,8 @@ public class TrackboxProtocolDecoderTest extends ProtocolDecoderTest { verifyNothing(decoder, text( "a=connect&v=11&i=111111111111111")); verifyPosition(decoder, text( - "183457.999,5126.0247N,00002.8686E,5.2,70.4,3,57.63,32.11,17.32,150507,05")); + "183457.999,5126.0247N,00002.8686E,5.2,70.4,3,57.63,32.11,17.32,150507,05"), + position("2007-05-15 18:34:57.999", true, 51.43375, 0.04781)); verifyPosition(decoder, text( "183558.999,5126.3979N,00003.0745E,5.2,70.4,3,57.63,32.11,17.32,150507,05")); |