diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-06 05:21:28 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-06 05:21:28 +0800 |
commit | 48a3f0986ccc3caf6405604e3cfe6a3b4de5726c (patch) | |
tree | 6462db6ed37f48156b4b66bd8f2b751ebed24d20 | |
parent | a1d62abca4b07f35f7f80702c9f58bb40e703504 (diff) | |
download | go-tangerine-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.gz go-tangerine-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.tar.zst go-tangerine-48a3f0986ccc3caf6405604e3cfe6a3b4de5726c.zip |
Add coverage for rand
-rw-r--r-- | ethutil/rand_test.go | 9 |
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() +} |