requirements.go 246 B

123456789
  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