(args ...interface{})
| 4747 | } |
| 4748 | |
| 4749 | func (tl *testLogger) Error(args ...interface{}) { |
| 4750 | tl.t.Logf("ASYNQ_ERROR: %s", fmt.Sprint(args...)) |
| 4751 | } |
| 4752 | |
| 4753 | func (tl *testLogger) Fatal(args ...interface{}) { |
| 4754 | tl.t.Logf("ASYNQ_FATAL: %s", fmt.Sprint(args...)) // t.Fatalf would exit test |
no outgoing calls
no test coverage detected