rclone/vendor/github.com/stretchr/testify/require/requirements.go
2018-03-19 15:51:38 +00:00

14 lines
306 B
Go

package require
// TestingT is an interface wrapper around *testing.T
type TestingT interface {
Errorf(format string, args ...interface{})
FailNow()
}
type tHelper interface {
Helper()
}
//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl -include-format-funcs