2017-05-19 18:40:09 +00:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-09 07:55:58 +00:00
|
|
|
//go:generate sh -c "cd ../_codegen && go build && cd - && ../_codegen/_codegen -output-package=require -template=require_forward.go.tmpl -include-format-funcs"
|