| 363 | } |
| 364 | |
| 365 | type messageHandler struct { |
| 366 | *testing.T |
| 367 | h func(ConsumerGroupSession, *ConsumerMessage) |
| 368 | started chan struct{} |
| 369 | startOnce sync.Once |
| 370 | } |
| 371 | |
| 372 | func (h *messageHandler) Setup(s ConsumerGroupSession) error { return nil } |
| 373 | func (h *messageHandler) Cleanup(s ConsumerGroupSession) error { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected