diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2013-08-09 21:46:58 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2013-08-09 21:46:58 +1200 |
commit | 635b158070a163c91a66fba857d61bf8acb5bd5d (patch) | |
tree | a49952b1c87c70b90dda61bb0cf32e28c794d4e0 /test/org/traccar/protocol/TopflytechProtocolDecoderTest.java | |
parent | c10858c1ae7f4dca0c9ae88e19bb069b91ad0792 (diff) | |
download | trackermap-server-635b158070a163c91a66fba857d61bf8acb5bd5d.tar.gz trackermap-server-635b158070a163c91a66fba857d61bf8acb5bd5d.tar.bz2 trackermap-server-635b158070a163c91a66fba857d61bf8acb5bd5d.zip |
Added Topflytech protocol (fix #282)
Diffstat (limited to 'test/org/traccar/protocol/TopflytechProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/TopflytechProtocolDecoderTest.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/TopflytechProtocolDecoderTest.java b/test/org/traccar/protocol/TopflytechProtocolDecoderTest.java new file mode 100644 index 000000000..7e253c80d --- /dev/null +++ b/test/org/traccar/protocol/TopflytechProtocolDecoderTest.java @@ -0,0 +1,20 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import org.junit.Test; + +public class TopflytechProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + TopflytechProtocolDecoder decoder = new TopflytechProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNotNull(decoder.decode(null, null, + "(880316890094910BP00XG00b600000000L00074b54S00000000R0C0F0014000100f0130531152205A0706.1395S11024.0965E000.0251.25")); + + } + +} |