(b *testing.B)
| 143 | } |
| 144 | |
| 145 | func BenchmarkRLEDecode(b *testing.B) { |
| 146 | for i := 0; i < b.N; i++ { |
| 147 | _ = compression.RLEdecode("12W1B12W3B") |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | func BenchmarkRLEncodeBytes(b *testing.B) { |
| 152 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected