NewFatalReporter returns a new FatalReporter object.
(t testing.TB)
| 48 | |
| 49 | // NewFatalReporter returns a new FatalReporter object. |
| 50 | func NewFatalReporter(t testing.TB) *FatalReporter { |
| 51 | return &FatalReporter{t} |
| 52 | } |
| 53 | |
| 54 | // Errorf implements Reporter.Errorf. |
| 55 | func (r *FatalReporter) Errorf(message string, args ...interface{}) { |
no outgoing calls
searching dependent graphs…