From d4fb7c70ffdba90e11914cb25a38955f0d50fd42 Mon Sep 17 00:00:00 2001 From: nativbarak Date: Sun, 29 Apr 2018 13:01:42 +0300 Subject: Fixed camel case and added neccasery info --- .../protocol/AustinNbProtocolDecoderTest.java | 33 ++++++++++++++++++++++ .../protocol/AustinProtocolDecoderTest.java | 33 ---------------------- 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 test/org/traccar/protocol/AustinNbProtocolDecoderTest.java delete mode 100644 test/org/traccar/protocol/AustinProtocolDecoderTest.java (limited to 'test') diff --git a/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java b/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java new file mode 100644 index 000000000..30291bd2f --- /dev/null +++ b/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java @@ -0,0 +1,33 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class AustinNbProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + AustinNbProtocolDecoder decoder = new AustinNbProtocolDecoder(new AustinNbProtocol()); + + 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")); + + } + +} diff --git a/test/org/traccar/protocol/AustinProtocolDecoderTest.java b/test/org/traccar/protocol/AustinProtocolDecoderTest.java deleted file mode 100644 index 6d59357fb..000000000 --- a/test/org/traccar/protocol/AustinProtocolDecoderTest.java +++ /dev/null @@ -1,33 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; - -public class AustinNBProtocolDecoderTest extends ProtocolTest { - - @Test - public void testDecode() throws Exception { - - AustinNBProtocolDecoder decoder = new AustinNBProtocolDecoder(new AustinNBProtocol()); - - 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")); - - } - -} -- cgit v1.2.3