You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
268 B

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