diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-09 15:42:13 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-09 15:42:13 +1300 |
commit | d04c2e83b12b6a546493a60f13ebf63253953787 (patch) | |
tree | 42b0a94c29537d63af928893369749da3b9dac6e /test/org/traccar/helper/ChannelBufferToolsTest.java | |
parent | 370d40bac14ee3cf92e9730d54d0595984561b0f (diff) | |
download | traccar-server-d04c2e83b12b6a546493a60f13ebf63253953787.tar.gz traccar-server-d04c2e83b12b6a546493a60f13ebf63253953787.tar.bz2 traccar-server-d04c2e83b12b6a546493a60f13ebf63253953787.zip |
Add channel buffer tools test
Diffstat (limited to 'test/org/traccar/helper/ChannelBufferToolsTest.java')
-rw-r--r-- | test/org/traccar/helper/ChannelBufferToolsTest.java | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/test/org/traccar/helper/ChannelBufferToolsTest.java b/test/org/traccar/helper/ChannelBufferToolsTest.java index 6e2c6310c..6733a8f2a 100644 --- a/test/org/traccar/helper/ChannelBufferToolsTest.java +++ b/test/org/traccar/helper/ChannelBufferToolsTest.java @@ -1,8 +1,7 @@ package org.traccar.helper; import org.jboss.netty.buffer.ChannelBuffers; - -import static org.junit.Assert.*; +import org.junit.Assert; import org.junit.Test; public class ChannelBufferToolsTest { @@ -12,7 +11,15 @@ public class ChannelBufferToolsTest { byte[] buf = {0x01, (byte) 0x90, 0x34}; int result = ChannelBufferTools.readHexInteger( ChannelBuffers.wrappedBuffer(buf), 5); - assertEquals(1903, result); + Assert.assertEquals(1903, result); + } + + @Test + public void testReadCoordinate() { + byte[] buf = {0x03, (byte) 0x85, 0x22, 0x59, 0x34}; + double result = ChannelBufferTools.readCoordinate( + ChannelBuffers.wrappedBuffer(buf)); + Assert.assertEquals(38.870989, result, 0.00001); } } |