| 31 | var _ Out = &TestOut{} |
| 32 | |
| 33 | type TestOut struct { |
| 34 | *bytes.Buffer |
| 35 | forceIsTerminal bool |
| 36 | } |
| 37 | |
| 38 | func (te *TestOut) Printf(format string, a ...interface{}) { |
| 39 | _, _ = fmt.Fprintf(te.Buffer, format, a...) |
nothing calls this directly
no outgoing calls
no test coverage detected