summaryrefslogtreecommitdiff
path: root/vendor/github.com/stretchr/testify/require/require.go.tmpl
blob: 8b32836850936b64a44e73ffe2e2d3e6795e8502 (plain)
1
2
3
4
5
6
{{ replace .Comment "assert." "require."}}
func {{.DocInfo.Name}}(t TestingT, {{.Params}}) {
	if h, ok := t.(tHelper); ok { h.Helper() }
	if assert.{{.DocInfo.Name}}(t, {{.ForwardedParams}}) { return }
	t.FailNow()
}