aboutsummaryrefslogtreecommitdiffstats
path: root/blockpool/test/util.go
blob: e183bf1d13fafe0c07cc4997a87d966bd55504fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package test

import (
    "fmt"
    "testing"
    "time"
)

func CheckInt(name string, got int, expected int, t *testing.T) (err error) {
    if got != expected {
        t.Errorf("status for %v incorrect. expected %v, got %v", name, expected, got)
        err = fmt.Errorf("")
    }
    return
}

func CheckDuration(name string, got time.Duration, expected time.Duration, t *testing.T) (err error) {
    if got != expected {
        t.Errorf("status for %v incorrect. expected %v, got %v", name, expected, got)
        err = fmt.Errorf("")
    }
    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
}