blob: df189d2348f17a3d16888e2581d2a3b7a9d47e93 [file] [log] [blame]
Jonathan Hart4b110f62020-03-13 17:36:19 -07001package assert
2
3// Assertions provides assertion methods around the
4// TestingT interface.
5type Assertions struct {
6 t TestingT
7}
8
9// New makes a new Assertions object for the specified TestingT.
10func New(t TestingT) *Assertions {
11 return &Assertions{
12 t: t,
13 }
14}
15
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000016//go:generate sh -c "cd ../_codegen && go build && cd - && ../_codegen/_codegen -output-package=assert -template=assertion_forward.go.tmpl -include-format-funcs"