Source File
forward_assertions.go
Belonging Package
github.com/stretchr/testify/assert
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 ( TestingT) *Assertions {return &Assertions{t: ,}}//go:generate sh -c "cd ../_codegen && go build && cd - && ../_codegen/_codegen -output-package=assert -template=assertion_forward.go.tmpl -include-format-funcs"
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |