(b *testing.B)
| 396 | } |
| 397 | |
| 398 | func BenchmarkGZIPCompressor1B(b *testing.B) { |
| 399 | bmCompressor(b, 1, NewGZIPCompressor()) |
| 400 | } |
| 401 | |
| 402 | func BenchmarkGZIPCompressor1KiB(b *testing.B) { |
| 403 | bmCompressor(b, 1024, NewGZIPCompressor()) |
nothing calls this directly
no test coverage detected