(b *testing.B)
| 356 | } |
| 357 | |
| 358 | func BenchmarkComplement(b *testing.B) { |
| 359 | ba := newBitArray(160000) |
| 360 | |
| 361 | b.ResetTimer() |
| 362 | |
| 363 | for i := 0; i < b.N; i++ { |
| 364 | ba.complement() |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | func TestSetHighestLowest(t *testing.T) { |
| 369 | ba := newBitArray(10) |
nothing calls this directly
no test coverage detected
searching dependent graphs…