diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/org/traccar/protocol/V680ProtocolDecoderTest.java | 18 |
1 files changed, 18 insertions, 0 deletions
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")); + + } + +} |