(b *testing.B)
| 416 | } |
| 417 | |
| 418 | func BenchmarkGZIPCompressor1MiB(b *testing.B) { |
| 419 | bmCompressor(b, 1024*1024, NewGZIPCompressor()) |
| 420 | } |
| 421 | |
| 422 | // mustCompress gzip-compresses input and returns it as a BufferSlice, |
| 423 | // failing the test if compression fails. |
nothing calls this directly
no test coverage detected