| 30 | ) |
| 31 | |
| 32 | type mockTaskQueue struct { |
| 33 | dispatchCounter map[string]uint |
| 34 | popCounter map[string]uint |
| 35 | sync.Mutex |
| 36 | } |
| 37 | |
| 38 | func (mtq *mockTaskQueue) GetDispatchCounter(consumerID string) uint { |
| 39 | mtq.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected