diff options
Diffstat (limited to 'src/test/java/org/traccar/protocol/DingtekProtocolDecoderTest.java')
-rw-r--r-- | src/test/java/org/traccar/protocol/DingtekProtocolDecoderTest.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/test/java/org/traccar/protocol/DingtekProtocolDecoderTest.java b/src/test/java/org/traccar/protocol/DingtekProtocolDecoderTest.java index ccf23a5c2..3a7567106 100644 --- a/src/test/java/org/traccar/protocol/DingtekProtocolDecoderTest.java +++ b/src/test/java/org/traccar/protocol/DingtekProtocolDecoderTest.java @@ -1,20 +1,21 @@ package org.traccar.protocol; -import org.junit.Ignore; import org.junit.Test; import org.traccar.ProtocolTest; public class DingtekProtocolDecoderTest extends ProtocolTest { - @Ignore @Test public void testDecode() throws Exception { DingtekProtocolDecoder decoder = new DingtekProtocolDecoder(null); - verifyPosition(decoder, binary( + verifyPosition(decoder, text( "800001011e0692001a00000000016e008027c40000186962703655111781")); + verifyNull(decoder, text( + "8000010333020E180A1E4B1E124801042015693400000000173.249.23.186;6181;159.138.4.6;8888;000000000000000081")); + } } |