2016-11-19 10:22:36 +00:00
|
|
|
package require
|
|
|
|
|
|
|
|
// TestingT is an interface wrapper around *testing.T
|
|
|
|
type TestingT interface {
|
|
|
|
Errorf(format string, args ...interface{})
|
|
|
|
FailNow()
|
|
|
|
}
|
|
|
|
|
2018-03-19 15:51:38 +00:00
|
|
|
type tHelper interface {
|
|
|
|
Helper()
|
|
|
|
}
|
|
|
|
|
2017-07-23 07:51:42 +00:00
|
|
|
//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl -include-format-funcs
|