errorsCapturingT is a mock implementation of TestingT that captures errors reported with Errorf.
| 3398 | |
| 3399 | // errorsCapturingT is a mock implementation of TestingT that captures errors reported with Errorf. |
| 3400 | type errorsCapturingT struct { |
| 3401 | errors []error |
| 3402 | } |
| 3403 | |
| 3404 | // Helper is like [testing.T.Helper] but does nothing. |
| 3405 | func (errorsCapturingT) Helper() {} |
nothing calls this directly
no outgoing calls
no test coverage detected