diff options
Diffstat (limited to 'test/org/traccar/protocol/WondexProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/WondexProtocolDecoderTest.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/WondexProtocolDecoderTest.java b/test/org/traccar/protocol/WondexProtocolDecoderTest.java new file mode 100644 index 000000000..e8e52c149 --- /dev/null +++ b/test/org/traccar/protocol/WondexProtocolDecoderTest.java @@ -0,0 +1,22 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class WondexProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + WondexProtocolDecoder decoder = new WondexProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNotNull(decoder.decode(null, null, + "210000001,20070313170040,121.123456,12.654321,0,233,0,9,2,0.0,0,0.00,0.00,0")); + + assertNotNull(decoder.decode(null, null, + "1044989601,20130322172647,13.572583,52.401070,22,204,49,0,2")); + + } + +} |