aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java
diff options
context:
space:
mode:
authornativbarak <nativ@globekeeper.com>2018-04-12 19:11:55 +0300
committernativbarak <nativ@globekeeper.com>2018-04-12 19:11:55 +0300
commit8ca988c3381b10eeb0939b05ba1cc3e49c7cc8ed (patch)
treeda534ffeca41ca558fb8664b7403eccd5f33ae44 /test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java
parent617393cf9f052298f7fb35f0c58138c87a6dd5c3 (diff)
downloadtrackermap-server-8ca988c3381b10eeb0939b05ba1cc3e49c7cc8ed.tar.gz
trackermap-server-8ca988c3381b10eeb0939b05ba1cc3e49c7cc8ed.tar.bz2
trackermap-server-8ca988c3381b10eeb0939b05ba1cc3e49c7cc8ed.zip
Fixed wrong order of input, unused import and changed name of protocol
Diffstat (limited to 'test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java b/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java
deleted file mode 100644
index 918fd9083..000000000
--- a/test/org/traccar/protocol/GlobeKeeperProtocolDecoderTest.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package org.traccar.protocol;
-
-import org.junit.Test;
-import org.traccar.ProtocolTest;
-
-public class GlobeKeeperProtocolDecoderTest extends ProtocolTest {
-
- @Test
- public void testDecode() throws Exception {
-
- GlobeKeeperProtocolDecoder decoder = new GlobeKeeperProtocolDecoder(new GlobeKeeperProtocol());
-
- verifyPosition(decoder, text(
- "48666666666;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;120;2292;1"));
-
- verifyPosition(decoder, text(
- "48666666666;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;90;4000;0"));
-
- verifyPosition(decoder, text(
- "48666666666;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;90;1199;0"));
-
- verifyPosition(decoder, text(
- "48601601601;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;360;2292;1"));
-
- verifyPosition(decoder, text(
- "48601601601;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;360;4000;0"));
-
- verifyPosition(decoder, text(
- "48601601601;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;360;1199;0"));
-
- }
-
-}