(format string, args ...interface{})
| 2965 | } |
| 2966 | |
| 2967 | func (ctt *captureTestingT) Errorf(format string, args ...interface{}) { |
| 2968 | ctt.msg = fmt.Sprintf(format, args...) |
| 2969 | } |
| 2970 | |
| 2971 | func (ctt *captureTestingT) checkResultAndErrMsg(t *testing.T, expectedRes, res bool, expectedErrMsg string) { |
| 2972 | t.Helper() |