(b *testing.B)
| 408 | } |
| 409 | |
| 410 | func BenchmarkGZIPCompressor64KiB(b *testing.B) { |
| 411 | bmCompressor(b, 64*1024, NewGZIPCompressor()) |
| 412 | } |
| 413 | |
| 414 | func BenchmarkGZIPCompressor512KiB(b *testing.B) { |
| 415 | bmCompressor(b, 512*1024, NewGZIPCompressor()) |
nothing calls this directly
no test coverage detected