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/NavisProtocolDecoderTest.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/NavisProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/NavisProtocolDecoderTest.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/org/traccar/protocol/NavisProtocolDecoderTest.java b/test/org/traccar/protocol/NavisProtocolDecoderTest.java index 863deb3d9..c0d0357b0 100644 --- a/test/org/traccar/protocol/NavisProtocolDecoderTest.java +++ b/test/org/traccar/protocol/NavisProtocolDecoderTest.java @@ -1,11 +1,11 @@ package org.traccar.protocol; +import org.traccar.ProtocolDecoderTest; import org.traccar.helper.ChannelBufferTools; import java.nio.ByteOrder; import org.jboss.netty.buffer.ChannelBuffers; -import static org.traccar.helper.DecoderVerifier.verify; -import static org.junit.Assert.assertNull; + import org.junit.Test; public class NavisProtocolDecoderTest extends ProtocolDecoderTest { @@ -15,14 +15,14 @@ public class NavisProtocolDecoderTest extends ProtocolDecoderTest { NavisProtocolDecoder decoder = new NavisProtocolDecoder(new NavisProtocol()); - assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertHexString( - "404E5443010000007B000000130044342A3E533A383631373835303035323035303739")))); + verifyNothing(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "404E5443010000007B000000130044342A3E533A383631373835303035323035303739")); - verify(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertHexString( - "404E5443010000007B0000005A0050692A3E410125DB0E00000015110707110A0C0880630000AA39A2381600020000000000000000000C110708110A0CB389793F1AEF263F00000000120034F516440000000000000000000000FAFF000000FAFF000000FAFF80808080")))); + verifyPositions(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "404E5443010000007B0000005A0050692A3E410125DB0E00000015110707110A0C0880630000AA39A2381600020000000000000000000C110708110A0CB389793F1AEF263F00000000120034F516440000000000000000000000FAFF000000FAFF000000FAFF80808080")); - assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertHexString( - "404E5443010000007B000000130047372A3E533A383631373835303035313236303639")))); + verifyNothing(decoder, binary(ByteOrder.LITTLE_ENDIAN, + "404E5443010000007B000000130047372A3E533A383631373835303035313236303639")); } |