1package require
2
3// TestingT is an interface wrapper around *testing.T
4type TestingT interface {
5	Errorf(format string, args ...interface{})
6	FailNow()
7}
8
9//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl
10