| 56 | } |
| 57 | |
| 58 | type testSenderProvider struct { |
| 59 | mu sync.Mutex |
| 60 | |
| 61 | opt Options |
| 62 | } |
| 63 | |
| 64 | func (p *testSenderProvider) Send(ctx context.Context, msg *sender.Message) error { |
| 65 | p.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected