diff options
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/XirgoProtocolDecoderTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/XirgoProtocolDecoderTest.java b/test/org/traccar/protocol/XirgoProtocolDecoderTest.java new file mode 100644 index 000000000..81133104c --- /dev/null +++ b/test/org/traccar/protocol/XirgoProtocolDecoderTest.java @@ -0,0 +1,19 @@ +package org.traccar.protocol; + +import org.traccar.helper.TestDataManager; +import static org.traccar.helper.DecoderVerifier.verify; +import org.junit.Test; + +public class XirgoProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + XirgoProtocolDecoder decoder = new XirgoProtocolDecoder(new TestDataManager(), null, null); + + verify(decoder.decode(null, null, null, + "$$354898045650537,6031,2015/02/26,15:47:26,33.42552,-112.30308,287.8,0,0,0,0,0.0,7,1.2,2,0.0,12.2,22,1,0,82.3")); + + } + +} |