aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/rand_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-12 03:37:18 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-12 03:37:18 +0800
commit1d866b5e579e06d00ab63cf8899a47e08b95b232 (patch)
tree022955dec7ef6527a6f30d3adb82ce4671e111a2 /ethutil/rand_test.go
parentf59a3b67f69b26f969084e0de165435e80bd8e12 (diff)
parent5c5df21e3d8768481c2bc1b6e9475099590e10be (diff)
downloaddexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.gz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.bz2
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.lz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.xz
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.zst
dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.zip
Merge pull request #1 from tgerring/tests
Initial tests based on check framework
Diffstat (limited to 'ethutil/rand_test.go')
-rw-r--r--ethutil/rand_test.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/ethutil/rand_test.go b/ethutil/rand_test.go
new file mode 100644
index 000000000..c12698538
--- /dev/null
+++ b/ethutil/rand_test.go
@@ -0,0 +1,17 @@
+package ethutil
+
+import (
+ checker "gopkg.in/check.v1"
+)
+
+type RandomSuite struct{}
+
+var _ = checker.Suite(&RandomSuite{})
+
+func (s *RandomSuite) TestRandomUint64(c *checker.C) {
+ res1, _ := RandomUint64()
+ res2, _ := RandomUint64()
+ c.Assert(res1, checker.NotNil)
+ c.Assert(res2, checker.NotNil)
+ c.Assert(res1, checker.Not(checker.Equals), res2)
+}