diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-21 18:03:02 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-21 18:03:02 +0800 |
commit | f4cd66dc009191f51fc47d9c218c1073a1552bdf (patch) | |
tree | 62ccd1501fc52a4f4606c8bee0f00bc99756c088 /blockpool/test/util.go | |
parent | ed0817c55dc45290d9de594fea28f7bc35d564da (diff) | |
download | dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.tar dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.tar.gz dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.tar.bz2 dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.tar.lz dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.tar.xz dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.tar.zst dexon-f4cd66dc009191f51fc47d9c218c1073a1552bdf.zip |
blockpool: deleted
Diffstat (limited to 'blockpool/test/util.go')
-rw-r--r-- | blockpool/test/util.go | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/blockpool/test/util.go b/blockpool/test/util.go deleted file mode 100644 index 930601278..000000000 --- a/blockpool/test/util.go +++ /dev/null @@ -1,41 +0,0 @@ -package test - -import ( - "fmt" - "testing" - "time" -) - -// miscellaneous test helpers - -func CheckInt(name string, got int, expected int, t *testing.T) (err error) { - if got != expected { - err = fmt.Errorf("status for %v incorrect. expected %v, got %v", name, expected, got) - if t != nil { - t.Error(err) - } - } - return -} - -func CheckDuration(name string, got time.Duration, expected time.Duration, t *testing.T) (err error) { - if got != expected { - err = fmt.Errorf("status for %v incorrect. expected %v, got %v", name, expected, got) - if t != nil { - t.Error(err) - } - } - return -} - -func ArrayEq(a, b []int) bool { - if len(a) != len(b) { - return false - } - for i := range a { - if a[i] != b[i] { - return false - } - } - return true -} |