TestPrinter prints messages during testing
| 61 | |
| 62 | // TestPrinter prints messages during testing |
| 63 | type TestPrinter struct { |
| 64 | t testing.TB |
| 65 | } |
| 66 | |
| 67 | func NewTestPrinter(t testing.TB) *TestPrinter { |
| 68 | return &TestPrinter{ |
nothing calls this directly
no outgoing calls
no test coverage detected