aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/helper/ChannelBufferToolsTest.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-04-27 11:21:27 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2016-04-27 11:21:27 +1200
commit44f026f881efa6207ab79fb5bada20ab67f018a0 (patch)
tree62cab9dc7d35c12bf75217eecf85b335ecebbe5a /test/org/traccar/helper/ChannelBufferToolsTest.java
parentaa0cbaa6e849d01a5bb02e2e999b80c178270014 (diff)
downloadtrackermap-server-44f026f881efa6207ab79fb5bada20ab67f018a0.tar.gz
trackermap-server-44f026f881efa6207ab79fb5bada20ab67f018a0.tar.bz2
trackermap-server-44f026f881efa6207ab79fb5bada20ab67f018a0.zip
Rename ChannelBufferTools to BcdUtil
Diffstat (limited to 'test/org/traccar/helper/ChannelBufferToolsTest.java')
-rw-r--r--test/org/traccar/helper/ChannelBufferToolsTest.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/org/traccar/helper/ChannelBufferToolsTest.java b/test/org/traccar/helper/ChannelBufferToolsTest.java
deleted file mode 100644
index 6733a8f2a..000000000
--- a/test/org/traccar/helper/ChannelBufferToolsTest.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package org.traccar.helper;
-
-import org.jboss.netty.buffer.ChannelBuffers;
-import org.junit.Assert;
-import org.junit.Test;
-
-public class ChannelBufferToolsTest {
-
- @Test
- public void testReadHexInteger() {
- byte[] buf = {0x01, (byte) 0x90, 0x34};
- int result = ChannelBufferTools.readHexInteger(
- ChannelBuffers.wrappedBuffer(buf), 5);
- 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);
- }
-
-}