()
| 95 | } |
| 96 | |
| 97 | func (w *resumableClientTestWorker) Calls() []string { |
| 98 | w.callsMu.Lock() |
| 99 | defer w.callsMu.Unlock() |
| 100 | |
| 101 | return append([]string(nil), w.calls...) |
| 102 | } |
| 103 | |
| 104 | func (w *resumableClientTestWorker) Work(ctx context.Context, job *Job[resumableClientTestArgs]) error { |
| 105 | appendCall := func(call string) { |
no outgoing calls
no test coverage detected