(format string, args ...interface{})
| 2982 | } |
| 2983 | |
| 2984 | func (t *errorsCapturingT) Errorf(format string, args ...interface{}) { |
| 2985 | t.errors = append(t.errors, fmt.Errorf(format, args...)) |
| 2986 | } |
| 2987 | |
| 2988 | func (t *errorsCapturingT) Helper() {} |
| 2989 |