(t *testing.T)
| 396 | } |
| 397 | |
| 398 | func TestClearBitAtCapacity(t *testing.T) { |
| 399 | ba := newBitArray(s * 2) |
| 400 | err := ba.ClearBit(s * 2) |
| 401 | assert.Error(t, err) |
| 402 | } |
| 403 | |
| 404 | func TestClearHighestLowest(t *testing.T) { |
| 405 | ba := newBitArray(10) |
nothing calls this directly
no test coverage detected
searching dependent graphs…