From c24d143c9e08f9782d7ad063868ea7c647db2a03 Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Tue, 11 Nov 2014 19:18:52 +0100 Subject: [PATCH] Convert rand_test to checker --- ethutil/rand_test.go | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/ethutil/rand_test.go b/ethutil/rand_test.go index cc64c73e5..c12698538 100644 --- a/ethutil/rand_test.go +++ b/ethutil/rand_test.go @@ -1,9 +1,17 @@ package ethutil import ( - "testing" + checker "gopkg.in/check.v1" ) -func TestRandomUint64(t *testing.T) { - RandomUint64() +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) }