aboutsummaryrefslogtreecommitdiff
path: root/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/traccar/protocol/ThinkPowerProtocolDecoderTest.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/java/org/traccar/protocol/ThinkPowerProtocolDecoderTest.java b/src/test/java/org/traccar/protocol/ThinkPowerProtocolDecoderTest.java
new file mode 100644
index 000000000..ff808e667
--- /dev/null
+++ b/src/test/java/org/traccar/protocol/ThinkPowerProtocolDecoderTest.java
@@ -0,0 +1,27 @@
+package org.traccar.protocol;
+
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+
+public class ThinkPowerProtocolDecoderTest extends ProtocolTest {
+
+ @Test
+ public void testDecode() throws Exception {
+
+ var decoder = new ThinkPowerProtocolDecoder(null);
+
+ verifyNull(decoder, binary(
+ "0103002C01020F38363737333030353038323030343606544C3930344111522D312E302E31372E32303231303431300011C3"));
+
+ verifyPosition(decoder, binary(
+ "05300012016099E995010D743CC943EB481500000000EED4"));
+
+ verifyPosition(decoder, binary(
+ "05000007016099E768020162D8"));
+
+ verifyNull(decoder, binary(
+ "03040000C3DC"));
+
+ }
+
+}