| 2168 | } |
| 2169 | |
| 2170 | type tCustomLogger struct { |
| 2171 | *testing.T |
| 2172 | logs []string |
| 2173 | errs []string |
| 2174 | } |
| 2175 | |
| 2176 | func (tc *tCustomLogger) Logf(format string, args ...interface{}) { |
| 2177 | tc.T.Logf(format, args...) |
nothing calls this directly
no outgoing calls
no test coverage detected