-- import "go.lukeharris.dev/testUtils"
type TestUtils struct {}
func Setup(t *testing.T) *TestUtils
Returns pointer to new TestUtils instance
func (u *TestUtils) BoolEq(got, expected bool)
Asserts if booleans are equal
func (u *TestUtils) BytesEq(got, expected []byte)
Asserts if bytes are equal
func (u *TestUtils) IsNil(got interface{})
Asserts if value is nil
func (u *TestUtils) IsNotNil(got interface{})
Asserts if value is non-nil
func (u *TestUtils) StrEq(got, expected string)
Asserts if strings are equal