From 62e04a3d493a98790172def8d1996be63400eb15 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 27 Apr 2014 18:38:40 +1200 Subject: Add MiniFinder protocol --- .../protocol/MiniFinderProtocolDecoderTest.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java (limited to 'test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java') diff --git a/test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java b/test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java new file mode 100644 index 000000000..d484d6660 --- /dev/null +++ b/test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java @@ -0,0 +1,26 @@ +package org.traccar.protocol; + +import org.traccar.helper.TestDataManager; +import static org.traccar.helper.DecoderVerifier.verify; +import static org.junit.Assert.assertNull; +import org.junit.Test; + +public class MiniFinderProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + MiniFinderProtocolDecoder decoder = new MiniFinderProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNull(decoder.decode(null, null, "!1,860719020212696")); + + verify(decoder.decode(null, null, + "!D,22/2/14,13:40:58,56.899601,14.811541,0,0,1,176.0,98,5,16,0")); + + verify(decoder.decode(null, null, + "!D,22/2/14,13:47:51,56.899517,14.811665,0,0,b0001,179.3,97,5,16,0")); + + } + +} -- cgit v1.2.3