testLogger implements the StdLogger interface and records the text in the logs of the given T passed from Test functions. and records the text in the error log. nolint:unused
| 10 | // |
| 11 | // nolint:unused |
| 12 | type testLogger struct { |
| 13 | t *testing.T |
| 14 | } |
| 15 | |
| 16 | // nolint:unused |
| 17 | func (l *testLogger) Print(v ...any) { |
nothing calls this directly
no outgoing calls
no test coverage detected