(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func TestFuncProducingSnappy(t *testing.T) { |
| 38 | config := NewFunctionalTestConfig() |
| 39 | config.Producer.Compression = CompressionSnappy |
| 40 | testProducingMessages(t, config, MinVersion) |
| 41 | } |
| 42 | |
| 43 | func TestFuncProducingZstd(t *testing.T) { |
| 44 | config := NewFunctionalTestConfig() |
nothing calls this directly
no test coverage detected