chore(vendor): github.com/stretchr/testify/require

This commit is contained in:
sh0rez 2019-10-29 22:10:16 +01:00
parent 6e283c5310
commit 12a8bc9d9d
No known key found for this signature in database
GPG key ID: 87C71DF9F8181FF1
10 changed files with 2269 additions and 3 deletions

View file

@ -0,0 +1,16 @@
package require
// Assertions provides assertion methods around the
// TestingT interface.
type Assertions struct {
t TestingT
}
// New makes a new Assertions object for the specified TestingT.
func New(t TestingT) *Assertions {
return &Assertions{
t: t,
}
}
//go:generate go run ../_codegen/main.go -output-package=require -template=require_forward.go.tmpl -include-format-funcs