aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/helper
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/helper')
-rw-r--r--test/org/traccar/helper/BcdUtilTest.java (renamed from test/org/traccar/helper/ChannelBufferToolsTest.java)8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/org/traccar/helper/ChannelBufferToolsTest.java b/test/org/traccar/helper/BcdUtilTest.java
index 6733a8f2a..8767ac890 100644
--- a/test/org/traccar/helper/ChannelBufferToolsTest.java
+++ b/test/org/traccar/helper/BcdUtilTest.java
@@ -4,12 +4,12 @@ import org.jboss.netty.buffer.ChannelBuffers;
import org.junit.Assert;
import org.junit.Test;
-public class ChannelBufferToolsTest {
+public class BcdUtilTest {
@Test
- public void testReadHexInteger() {
+ public void testReadInteger() {
byte[] buf = {0x01, (byte) 0x90, 0x34};
- int result = ChannelBufferTools.readHexInteger(
+ int result = BcdUtil.readInteger(
ChannelBuffers.wrappedBuffer(buf), 5);
Assert.assertEquals(1903, result);
}
@@ -17,7 +17,7 @@ public class ChannelBufferToolsTest {
@Test
public void testReadCoordinate() {
byte[] buf = {0x03, (byte) 0x85, 0x22, 0x59, 0x34};
- double result = ChannelBufferTools.readCoordinate(
+ double result = BcdUtil.readCoordinate(
ChannelBuffers.wrappedBuffer(buf));
Assert.assertEquals(38.870989, result, 0.00001);
}