diff options
Diffstat (limited to 'test/org/traccar/helper/BcdUtilTest.java')
-rw-r--r-- | test/org/traccar/helper/BcdUtilTest.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/org/traccar/helper/BcdUtilTest.java b/test/org/traccar/helper/BcdUtilTest.java deleted file mode 100644 index 8767ac890..000000000 --- a/test/org/traccar/helper/BcdUtilTest.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 BcdUtilTest { - - @Test - public void testReadInteger() { - byte[] buf = {0x01, (byte) 0x90, 0x34}; - int result = BcdUtil.readInteger( - ChannelBuffers.wrappedBuffer(buf), 5); - Assert.assertEquals(1903, result); - } - - @Test - public void testReadCoordinate() { - byte[] buf = {0x03, (byte) 0x85, 0x22, 0x59, 0x34}; - double result = BcdUtil.readCoordinate( - ChannelBuffers.wrappedBuffer(buf)); - Assert.assertEquals(38.870989, result, 0.00001); - } - -} |