1
0
Fork 0

Install github.com/stretchr/testify/require.

This commit is contained in:
Timo Reimann 2017-04-27 01:02:00 +02:00 committed by Ludovic Fernandez
parent a04ef15bcd
commit 55f610422a
7 changed files with 838 additions and 0 deletions

View file

@ -0,0 +1,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