package testutil import "testing" func AssertNotNil(t *testing.T, err error) { t.Helper() if err != nil { t.Fatal(err) } }