diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-08 23:10:00 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-08 23:10:00 +1300 |
commit | af49cbb232a46b1af07ed43551c5c07fc26bfe2f (patch) | |
tree | 46732f454b3825113135d8b99e1507d8f1005a04 /test/org/traccar/protocol/UlbotechProtocolDecoderTest.java | |
parent | c99e32bb5da8a19c19c13e871d5c7b843b2bd182 (diff) | |
download | trackermap-server-af49cbb232a46b1af07ed43551c5c07fc26bfe2f.tar.gz trackermap-server-af49cbb232a46b1af07ed43551c5c07fc26bfe2f.tar.bz2 trackermap-server-af49cbb232a46b1af07ed43551c5c07fc26bfe2f.zip |
Add Ulbotech unit test case
Diffstat (limited to 'test/org/traccar/protocol/UlbotechProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/UlbotechProtocolDecoderTest.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java b/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java index fd2ad28fc..18c6c9622 100644 --- a/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java +++ b/test/org/traccar/protocol/UlbotechProtocolDecoderTest.java @@ -1,10 +1,9 @@ package org.traccar.protocol; import org.jboss.netty.buffer.ChannelBuffers; +import static org.junit.Assert.assertNull; import org.junit.Test; import org.traccar.helper.ChannelBufferTools; - -import static org.junit.Assert.assertNull; import static org.traccar.helper.DecoderVerifier.verify; public class UlbotechProtocolDecoderTest extends ProtocolDecoderTest { @@ -15,6 +14,9 @@ public class UlbotechProtocolDecoderTest extends ProtocolDecoderTest { UlbotechProtocolDecoder decoder = new UlbotechProtocolDecoder(new UlbotechProtocol()); verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( + "f8010103596580419465449da8564e010efe55a1800923d04b0000000000710304000000000404000178d2050603571876220ec3caf8")))); + + verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( "f8010103545500500179009ccb4b62010e00144db906310d3f0000000000cb0304000000000404000a8123050603211860221006080000000100000000ef97f8")))); verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ChannelBufferTools.convertHexString( |