(t *testing.T)
| 29 | } |
| 30 | |
| 31 | func TestFuncProducingGzip(t *testing.T) { |
| 32 | config := NewFunctionalTestConfig() |
| 33 | config.Producer.Compression = CompressionGZIP |
| 34 | testProducingMessages(t, config, MinVersion) |
| 35 | } |
| 36 | |
| 37 | func TestFuncProducingSnappy(t *testing.T) { |
| 38 | config := NewFunctionalTestConfig() |
nothing calls this directly
no test coverage detected