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
|
package proto
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
)
const allocRuns = 10
// wasAllocs returns true if f allocates memory.
func wasAllocs(f func()) bool {
return testing.AllocsPerRun(allocRuns, f) > 0
}
func loadData(tb testing.TB, name string) []byte {
name = filepath.Join("testdata", name)
f, err := os.Open(name) // #nosec
if err != nil {
tb.Fatal(err)
}
defer func() {
if errClose := f.Close(); errClose != nil {
tb.Fatal(errClose)
}
}()
v, err := ioutil.ReadAll(f)
if err != nil {
tb.Fatal(err)
}
return v
}
|