aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/Gps056ProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/Gps056ProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/Gps056ProtocolDecoderTest.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/org/traccar/protocol/Gps056ProtocolDecoderTest.java b/test/org/traccar/protocol/Gps056ProtocolDecoderTest.java
deleted file mode 100644
index a6d0c024a..000000000
--- a/test/org/traccar/protocol/Gps056ProtocolDecoderTest.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.traccar.protocol;
-
-import org.junit.Test;
-import org.traccar.ProtocolTest;
-
-public class Gps056ProtocolDecoderTest extends ProtocolTest {
-
- @Test
- public void testDecode() throws Exception {
-
- Gps056ProtocolDecoder decoder = new Gps056ProtocolDecoder(null);
-
- verifyNull(decoder, buffer(
- "$$25LOGN_118624620337829462.1#"));
-
- verifyPosition(decoder, binary(
- "242435314750534C5F30323836333037313031353034353834391D0A0E091A0A0B1112C34E1E23230A45FF00000000000000000000000023"));
-
- verifyAttributes(decoder, binary(
- "2424323853594E435F313138363330373130313530343538343900000000000023"));
-
- }
-
-}