diff options
Diffstat (limited to 'test/org/traccar/protocol/Ardi01ProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Ardi01ProtocolDecoderTest.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test/org/traccar/protocol/Ardi01ProtocolDecoderTest.java b/test/org/traccar/protocol/Ardi01ProtocolDecoderTest.java deleted file mode 100644 index 9a05e12d2..000000000 --- a/test/org/traccar/protocol/Ardi01ProtocolDecoderTest.java +++ /dev/null @@ -1,22 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; - -public class Ardi01ProtocolDecoderTest extends ProtocolTest { - - @Test - public void testDecode() throws Exception { - - Ardi01ProtocolDecoder decoder = new Ardi01ProtocolDecoder(new Ardi01Protocol()); - - verifyPosition(decoder, text( - "013227003054776,20141010052719,24.4736042,56.8445807,110,289,40,7,5,78,-1"), - position("2014-10-10 05:27:19.000", true, 56.84458, 24.47360)); - - verifyPosition(decoder, text( - "013227003054776,20141010052719,24.4736042,56.8445807,110,289,40,7,5,78,-1")); - - } - -} |