(b *testing.B)
| 149 | } |
| 150 | |
| 151 | func BenchmarkRLEncodeBytes(b *testing.B) { |
| 152 | for i := 0; i < b.N; i++ { |
| 153 | _ = compression.RLEncodebytes([]byte("WWWWWWWWWWWWBWWWWWWWWWWWWBBB")) |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | func BenchmarkRLEDecodeBytes(b *testing.B) { |
| 158 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected