Add test dependencies back to vendor directory

This commit is contained in:
Nick Craig-Wood 2016-11-19 10:22:36 +00:00
parent 09897c8d0d
commit e19b30bd26
28 changed files with 5404 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