From af73f3436fc25f52e0157bce7b725ecd85f49869 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 28 Oct 2012 10:34:32 +1300 Subject: Add V680 support (fix #59) --- test/org/traccar/protocol/V680ProtocolDecoderTest.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/org/traccar/protocol/V680ProtocolDecoderTest.java (limited to 'test/org/traccar') diff --git a/test/org/traccar/protocol/V680ProtocolDecoderTest.java b/test/org/traccar/protocol/V680ProtocolDecoderTest.java new file mode 100644 index 000000000..ef0f5f403 --- /dev/null +++ b/test/org/traccar/protocol/V680ProtocolDecoderTest.java @@ -0,0 +1,18 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class V680ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + V680ProtocolDecoder decoder = new V680ProtocolDecoder(new TestDataManager(), 0); + + assertNotNull(decoder.decode(null, null, + "#356823033219838#1000#0#1478#AUT#1#66830FFB#03855.6628,E,4716.6821,N,001.41,259#130812#143905")); + + } + +} -- cgit v1.2.3