OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / stretchr / testify / require / forward_requirements.go
1 package require
2
3 // Assertions provides assertion methods around the
4 // TestingT interface.
5 type Assertions struct {
6         t TestingT
7 }
8
9 // New makes a new Assertions object for the specified TestingT.
10 func New(t TestingT) *Assertions {
11         return &Assertions{
12                 t: t,
13         }
14 }
15
16 //go:generate go run ../_codegen/main.go -output-package=require -template=require_forward.go.tmpl -include-format-funcs