integrationPushHandler 收集 hello / usage_push 事件供断言。
| 20 | |
| 21 | // integrationPushHandler 收集 hello / usage_push 事件供断言。 |
| 22 | type integrationPushHandler struct { |
| 23 | mu sync.Mutex |
| 24 | helloBodies [][]byte |
| 25 | usagePushes []uint64 |
| 26 | } |
| 27 | |
| 28 | func (h *integrationPushHandler) OnHello(_ string, body []byte) { |
| 29 | h.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected