(args ...interface{})
| 89 | } |
| 90 | |
| 91 | func (tl *testLogger) Error(args ...interface{}) { |
| 92 | tl.t.Logf("ASYNQ_ERROR: %s", fmt.Sprint(args...)) |
| 93 | } |
| 94 | |
| 95 | func (tl *testLogger) Fatal(args ...interface{}) { |
| 96 | tl.t.Logf("ASYNQ_FATAL: %s", fmt.Sprint(args...)) // t.Fatalf would exit test |
no outgoing calls
no test coverage detected