| Holger Hildebrandt | da7758b | 2020-03-16 11:30:03 +0000 | [diff] [blame] | 1 | package assert |
| 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 sh -c "cd ../_codegen && go build && cd - && ../_codegen/_codegen -output-package=assert -template=assertion_forward.go.tmpl -include-format-funcs" | ||||