mockWebpushDispatcher implements webpush.Dispatcher and records Dispatch calls.
| 6426 | |
| 6427 | // mockWebpushDispatcher implements webpush.Dispatcher and records Dispatch calls. |
| 6428 | type mockWebpushDispatcher struct { |
| 6429 | dispatchCount atomic.Int32 |
| 6430 | mu sync.Mutex |
| 6431 | lastMessage codersdk.WebpushMessage |
| 6432 | lastUserID uuid.UUID |
| 6433 | } |
| 6434 | |
| 6435 | func (m *mockWebpushDispatcher) Dispatch(_ context.Context, userID uuid.UUID, msg codersdk.WebpushMessage) error { |
| 6436 | m.dispatchCount.Add(1) |
nothing calls this directly
no outgoing calls
no test coverage detected