1package cmd
2
3import "testing"
4
5func assertNoErr(t *testing.T, e error) {
6	if e != nil {
7		t.Error(e)
8	}
9}
10