Benchmarks
(b *testing.B)
| 1265 | // Benchmarks |
| 1266 | |
| 1267 | func BenchmarkProducerSmall(b *testing.B) { |
| 1268 | benchmarkProducer(b, nil, "test.64", ByteEncoder(make([]byte, 128))) |
| 1269 | } |
| 1270 | |
| 1271 | func BenchmarkProducerMedium(b *testing.B) { |
| 1272 | benchmarkProducer(b, nil, "test.64", ByteEncoder(make([]byte, 1024))) |
nothing calls this directly
no test coverage detected