Source File
requirements.go
Belonging Package
github.com/stretchr/testify/require
package require// TestingT is an interface wrapper around *testing.Ttype TestingT interface {Errorf(format string, args ...interface{})FailNow()}type tHelper = interface {Helper()}// ComparisonAssertionFunc is a common function prototype when comparing two values. Can be useful// for table driven tests.type ComparisonAssertionFunc func(TestingT, interface{}, interface{}, ...interface{})// ValueAssertionFunc is a common function prototype when validating a single value. Can be useful// for table driven tests.type ValueAssertionFunc func(TestingT, interface{}, ...interface{})// BoolAssertionFunc is a common function prototype when validating a bool value. Can be useful// for table driven tests.type BoolAssertionFunc func(TestingT, bool, ...interface{})// ErrorAssertionFunc is a common function prototype when validating an error value. Can be useful// for table driven tests.type ErrorAssertionFunc func(TestingT, error, ...interface{})//go:generate sh -c "cd ../_codegen && go build && cd - && ../_codegen/_codegen -output-package=require -template=require.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. |