diff options
Diffstat (limited to 'test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java b/test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java deleted file mode 100644 index 4c33d1766..000000000 --- a/test/org/traccar/protocol/ObdDongleProtocolDecoderTest.java +++ /dev/null @@ -1,22 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; - -public class ObdDongleProtocolDecoderTest extends ProtocolTest { - - @Test - public void testDecode() throws Exception { - - ObdDongleProtocolDecoder decoder = new ObdDongleProtocolDecoder(null); - - verifyNull(decoder, binary( - "55550003383634383637303232353131303135010009010011023402010201ABAAAA")); - - verifyPosition(decoder, binary( - "5555000338363438363730323235313130313503000100010355AABBCC184F1ABC614E21C1FA08712A84ABAAAA"), - position("2015-07-18 20:49:16.000", true, 22.12346, -123.45678)); - - } - -} |