( t *testing.T, groupID string, clientID string, maxMessages int32, sink *testFuncConsumerGroupSink, topics ...string, )
| 412 | } |
| 413 | |
| 414 | func runTestFuncConsumerGroupMember( |
| 415 | t *testing.T, |
| 416 | groupID string, |
| 417 | clientID string, |
| 418 | maxMessages int32, |
| 419 | sink *testFuncConsumerGroupSink, |
| 420 | topics ...string, |
| 421 | ) *testFuncConsumerGroupMember { |
| 422 | t.Helper() |
| 423 | |
| 424 | config := defaultConfig(clientID) |
| 425 | return runTestFuncConsumerGroupMemberWithConfig(t, config, groupID, maxMessages, sink, topics...) |
| 426 | } |
| 427 | |
| 428 | func runTestFuncConsumerGroupMemberWithConfig( |
| 429 | t *testing.T, |
no test coverage detected