diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-22 15:26:17 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-22 15:26:17 +1300 |
commit | 1ca95d099df96d576a0eaddc6e42b5b41aed3e06 (patch) | |
tree | 65ae84eb5e301317263fd72c31cc54922c71eb96 /test/org/traccar/protocol/NavigilProtocolDecoderTest.java | |
parent | 122a26d2822f35b27b9cb0b217916d6b821d9654 (diff) | |
download | trackermap-server-1ca95d099df96d576a0eaddc6e42b5b41aed3e06.tar.gz trackermap-server-1ca95d099df96d576a0eaddc6e42b5b41aed3e06.tar.bz2 trackermap-server-1ca95d099df96d576a0eaddc6e42b5b41aed3e06.zip |
Refactor protocol unit testing
Diffstat (limited to 'test/org/traccar/protocol/NavigilProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/NavigilProtocolDecoderTest.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/test/org/traccar/protocol/NavigilProtocolDecoderTest.java b/test/org/traccar/protocol/NavigilProtocolDecoderTest.java index 3ad29e474..09883411e 100644 --- a/test/org/traccar/protocol/NavigilProtocolDecoderTest.java +++ b/test/org/traccar/protocol/NavigilProtocolDecoderTest.java @@ -2,10 +2,9 @@ package org.traccar.protocol; import java.nio.ByteOrder; import org.jboss.netty.buffer.ChannelBuffers; -import static org.junit.Assert.assertNull; import org.junit.Test; +import org.traccar.ProtocolDecoderTest; import org.traccar.helper.ChannelBufferTools; -import static org.traccar.helper.DecoderVerifier.verify; public class NavigilProtocolDecoderTest extends ProtocolDecoderTest { @@ -14,11 +13,11 @@ public class NavigilProtocolDecoderTest extends ProtocolDecoderTest { NavigilProtocolDecoder decoder = new NavigilProtocolDecoder(new NavigilProtocol()); - assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertHexString( - "01004300040020000000f60203080200e7cd0f510c0000003b00000000000000")))); + verifyNothing(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "01004300040020000000f60203080200e7cd0f510c0000003b00000000000000")); - verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertHexString( - "0100b3000f0024000000f4a803080200ca0c1151ef8885f0b82e6d130400c00403000000")))); + verifyPosition(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "0100b3000f0024000000f4a803080200ca0c1151ef8885f0b82e6d130400c00403000000")); } |