Implements TestingT
(format string, args ...interface{})
| 101 | |
| 102 | // Implements TestingT |
| 103 | func (t *outputT) Errorf(format string, args ...interface{}) { |
| 104 | s := fmt.Sprintf(format, args...) |
| 105 | t.buf.WriteString(s) |
| 106 | } |
| 107 | |
| 108 | func (t *outputT) Helper() { |
| 109 | if t.helpers == nil { |