aboutsummaryrefslogtreecommitdiffstats
path: root/blockpool/test/util.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-21 18:03:02 +0800
committerobscuren <geffobscura@gmail.com>2015-04-21 18:03:02 +0800
commitf4cd66dc009191f51fc47d9c218c1073a1552bdf (patch)
tree62ccd1501fc52a4f4606c8bee0f00bc99756c088 /blockpool/test/util.go
parented0817c55dc45290d9de594fea28f7bc35d564da (diff)
downloaddexon-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.go41
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
-}