(b *testing.B)
| 400 | } |
| 401 | |
| 402 | func BenchmarkGZIPCompressor1KiB(b *testing.B) { |
| 403 | bmCompressor(b, 1024, NewGZIPCompressor()) |
| 404 | } |
| 405 | |
| 406 | func BenchmarkGZIPCompressor8KiB(b *testing.B) { |
| 407 | bmCompressor(b, 8*1024, NewGZIPCompressor()) |
nothing calls this directly
no test coverage detected