File: requirements.go

package info (click to toggle)
golang-testify 1.1.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch, stretch-backports
  • size: 400 kB
  • sloc: makefile: 13
file content (9 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
package require

// TestingT is an interface wrapper around *testing.T
type TestingT interface {
	Errorf(format string, args ...interface{})
	FailNow()
}

//go:generate go run ../_codegen/main.go -output-package=require -template=require.go.tmpl