diff options
Diffstat (limited to 'test/org/traccar/protocol/TrackboxProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/TrackboxProtocolDecoderTest.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java b/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java deleted file mode 100644 index e83824fb4..000000000 --- a/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java +++ /dev/null @@ -1,25 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; - -public class TrackboxProtocolDecoderTest extends ProtocolTest { - - @Test - public void testDecode() throws Exception { - - TrackboxProtocolDecoder decoder = new TrackboxProtocolDecoder(null); - - verifyNull(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"), - 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")); - - } - -} |