aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/TelikProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/TelikProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/TelikProtocolDecoderTest.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/TelikProtocolDecoderTest.java b/test/org/traccar/protocol/TelikProtocolDecoderTest.java
index c8c21c694..4344fe070 100644
--- a/test/org/traccar/protocol/TelikProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/TelikProtocolDecoderTest.java
@@ -1,8 +1,7 @@
package org.traccar.protocol;
-import static org.traccar.helper.DecoderVerifier.verify;
-import static org.junit.Assert.assertNull;
import org.junit.Test;
+import org.traccar.ProtocolDecoderTest;
public class TelikProtocolDecoderTest extends ProtocolDecoderTest {
@@ -11,10 +10,10 @@ public class TelikProtocolDecoderTest extends ProtocolDecoderTest {
TelikProtocolDecoder decoder = new TelikProtocolDecoder(new TelikProtocol());
- assertNull(decoder.decode(null, null,
+ verifyNothing(decoder, text(
"0026436729|232|01|003002030"));
- verify(decoder.decode(null, null,
+ verifyPosition(decoder, text(
"182043672999,010100001301,0,270613041652,166653,475341,3,0,355,6,2,1,231,8112432,23201,01,00,217,0,0,0,0,7"));
}