diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2013-03-17 15:12:52 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2013-03-17 15:12:52 +1300 |
commit | 91436e6a790b6c01c7af7d6c73c8783896c6cd87 (patch) | |
tree | b8798424e3167a6ba48c788e528524fffe35bfc3 /test/org | |
parent | 8db1cf2bc97f5f616bd5722656db2d69edd46d45 (diff) | |
download | trackermap-server-91436e6a790b6c01c7af7d6c73c8783896c6cd87.tar.gz trackermap-server-91436e6a790b6c01c7af7d6c73c8783896c6cd87.tar.bz2 trackermap-server-91436e6a790b6c01c7af7d6c73c8783896c6cd87.zip |
Add VT300 protocol
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/Vt300ProtocolDecoderTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/Vt300ProtocolDecoderTest.java b/test/org/traccar/protocol/Vt300ProtocolDecoderTest.java new file mode 100644 index 000000000..5a1bf685f --- /dev/null +++ b/test/org/traccar/protocol/Vt300ProtocolDecoderTest.java @@ -0,0 +1,19 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class Vt300ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + Vt300ProtocolDecoder decoder = new Vt300ProtocolDecoder(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")); + + } + +} |