aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-06 05:21:28 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-06 05:21:28 +0800
commit48a3f0986ccc3caf6405604e3cfe6a3b4de5726c (patch)
tree6462db6ed37f48156b4b66bd8f2b751ebed24d20
parenta1d62abca4b07f35f7f80702c9f58bb40e703504 (diff)
downloaddexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar
dexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.gz
dexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.bz2
dexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.lz
dexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.xz
dexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.zst
dexon-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.zip
Add coverage for rand
-rw-r--r--ethutil/rand_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/ethutil/rand_test.go b/ethutil/rand_test.go
new file mode 100644
index 000000000..cc64c73e5
--- /dev/null
+++ b/ethutil/rand_test.go
@@ -0,0 +1,9 @@
+package ethutil
+
+import (
+ "testing"
+)
+
+func TestRandomUint64(t *testing.T) {
+ RandomUint64()
+}