1
0
mirror of https://github.com/go-task/task.git synced 2025-06-17 00:17:51 +02:00
Files
task/vendor/github.com/stretchr/testify/assert/forward_assertions.go
Andrey Nering f2416d68b8 fix travis again
something was wrong with .gitignore rules
2017-07-30 21:00:50 -03:00

17 lines
366 B
Go

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