diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-06-09 13:57:12 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-06-09 13:57:12 +1200 |
commit | 67a63c5ecf2b636db16c96efef078a0f210d7620 (patch) | |
tree | f2823bc355b067b180d7d045cbf2f892d857ac2b /test/org/traccar/protocol/IdplProtocolDecoderTest.java | |
parent | 1052f99a2f4d051f08e507fc9aa3e40846421cd8 (diff) | |
download | trackermap-server-67a63c5ecf2b636db16c96efef078a0f210d7620.tar.gz trackermap-server-67a63c5ecf2b636db16c96efef078a0f210d7620.tar.bz2 trackermap-server-67a63c5ecf2b636db16c96efef078a0f210d7620.zip |
Change protocol name to correct one
Diffstat (limited to 'test/org/traccar/protocol/IdplProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/IdplProtocolDecoderTest.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/IdplProtocolDecoderTest.java b/test/org/traccar/protocol/IdplProtocolDecoderTest.java new file mode 100644 index 000000000..4340ebc3d --- /dev/null +++ b/test/org/traccar/protocol/IdplProtocolDecoderTest.java @@ -0,0 +1,22 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class IdplProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + IdplProtocolDecoder decoder = new IdplProtocolDecoder(new IdplProtocol()); + + verifyPosition(decoder, text( + "*ID1,863071011086474,210314,153218,A,1831.4577,N,07351.1433,E,0.79,240.64,9,20,A,1,4.20,0,1,01,1,0,0,A01,R,935D#"), + position("2014-03-21 15:32:18.000", true, 18.524295, 73.852388333333)); + + verifyPosition(decoder, text( + "*ID1,863071011086474,210314,162752,A,1831.4412,N,07351.0983,E,0.04,213.84,9,25,A,1,4.20,0,1,01,1,0,0,A01,L,EA01#")); + + } + +} |