Vendoring testify/require

This commit is contained in:
John Delivuk 2019-02-10 19:04:43 -05:00
parent 6030912cc0
commit b379be6818
No known key found for this signature in database
GPG key ID: 8597474A0655625E
30 changed files with 8737 additions and 191 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