bufferT implements TestingT. Its implementation of Errorf writes the output that would be produced by testing.T.Errorf to an internal bytes.Buffer.
| 742 | // bufferT implements TestingT. Its implementation of Errorf writes the output that would be produced by |
| 743 | // testing.T.Errorf to an internal bytes.Buffer. |
| 744 | type bufferT struct { |
| 745 | buf bytes.Buffer |
| 746 | } |
| 747 | |
| 748 | // Helper is like [testing.T.Helper] but does nothing. |
| 749 | func (bufferT) Helper() {} |
nothing calls this directly
no outgoing calls
no test coverage detected