go:generate sh -c "cd ../_codegen && go build && cd - && ../_codegen/_codegen -output-package=assert -template=assertion_format.go.tmpl" TestingT is an interface wrapper around *testing.T
| 26 | |
| 27 | // TestingT is an interface wrapper around *testing.T |
| 28 | type TestingT interface { |
| 29 | Errorf(format string, args ...interface{}) |
| 30 | } |
| 31 | |
| 32 | // ComparisonAssertionFunc is a common function prototype when comparing two values. Can be useful |
| 33 | // for table driven tests. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…