Add coverage for rand

This commit is contained in:
Taylor Gerring 2014-11-05 22:21:28 +01:00
parent a1d62abca4
commit 48a3f0986c
1 changed files with 9 additions and 0 deletions

9
ethutil/rand_test.go Normal file
View File

@ -0,0 +1,9 @@
package ethutil
import (
"testing"
)
func TestRandomUint64(t *testing.T) {
RandomUint64()
}