(t *testing.T)
| 575 | } |
| 576 | |
| 577 | func TestConsumerGroupStrategyCompatibility(t *testing.T) { |
| 578 | config := NewTestConfig() |
| 579 | config.Consumer.Group.Rebalance.Strategy = NewBalanceStrategySticky() |
| 580 | if err := config.Validate(); err != nil { |
| 581 | t.Error("Expected passing config validation, got ", err) |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | // This example shows how to integrate with an existing registry as well as publishing metrics |
| 586 | // on the standard output |
nothing calls this directly
no test coverage detected