diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2012-12-21 00:04:51 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2012-12-21 00:04:51 +1300 |
commit | 3bfd64939d3710caa1448f3134411bc0c825cc6c (patch) | |
tree | 0de27c36e24df4f1083d6a94a95b0c996925bef0 /test/org/traccar/protocol/Gt06ProtocolDecoderTest.java | |
parent | 247c226aef92f728956afd35a8bd0dd3272aacfd (diff) | |
download | trackermap-server-3bfd64939d3710caa1448f3134411bc0c825cc6c.tar.gz trackermap-server-3bfd64939d3710caa1448f3134411bc0c825cc6c.tar.bz2 trackermap-server-3bfd64939d3710caa1448f3134411bc0c825cc6c.zip |
Start GT06 protocol
Diffstat (limited to 'test/org/traccar/protocol/Gt06ProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Gt06ProtocolDecoderTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/Gt06ProtocolDecoderTest.java b/test/org/traccar/protocol/Gt06ProtocolDecoderTest.java new file mode 100644 index 000000000..585a2cea3 --- /dev/null +++ b/test/org/traccar/protocol/Gt06ProtocolDecoderTest.java @@ -0,0 +1,19 @@ +package org.traccar.protocol; + +import org.jboss.netty.buffer.ChannelBuffers; +import static org.junit.Assert.assertNotNull; +import org.junit.Test; + +public class Gt02ProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + Gt02ProtocolDecoder decoder = new Gt02ProtocolDecoder(new TestDataManager()); + + byte[] buf1 = {0x68,0x68,0x25,0x00,0x00,0x01,0x23,0x45,0x67,(byte)0x89,0x01,0x23,0x45,0x00,0x01,0x10,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x6B,0x3F,0x3E,0x02,0x6B,0x3F,0x3E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x0D,0x0A}; + assertNotNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(buf1))); + + } + +} |