(t *testing.T)
| 73 | } |
| 74 | |
| 75 | func newTestLogger(t *testing.T) *testLogger { |
| 76 | return &testLogger{t: t} |
| 77 | } |
| 78 | |
| 79 | func (tl *testLogger) Debug(args ...interface{}) { |
| 80 | tl.t.Logf("ASYNQ_DEBUG: %s", fmt.Sprint(args...)) |
no outgoing calls
no test coverage detected