Update vendored deps

This commit is contained in:
Matthias Loibl 2019-04-24 18:24:41 +02:00
parent d95948a351
commit 2ac07139f6
No known key found for this signature in database
GPG key ID: 78A796CA74CA38BA
22 changed files with 6045 additions and 0 deletions

View file

@ -0,0 +1,16 @@
package assert
// 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=assert -template=assertion_forward.go.tmpl -include-format-funcs