(format string, args ...interface{})
| 2778 | } |
| 2779 | |
| 2780 | func (t *errorsCapturingT) Errorf(format string, args ...interface{}) { |
| 2781 | t.errors = append(t.errors, fmt.Errorf(format, args...)) |
| 2782 | } |
| 2783 | |
| 2784 | func (t *errorsCapturingT) Helper() {} |
| 2785 |