| 24 | ) |
| 25 | |
| 26 | type ErrorReporter struct { |
| 27 | t *testing.T |
| 28 | log []string |
| 29 | failed bool |
| 30 | fatalToken struct{} |
| 31 | } |
| 32 | |
| 33 | func NewErrorReporter(t *testing.T) *ErrorReporter { |
| 34 | return &ErrorReporter{t: t} |
nothing calls this directly
no outgoing calls
no test coverage detected