(t *testing.T)
| 390 | } |
| 391 | |
| 392 | func TestSetBitAtCapacity(t *testing.T) { |
| 393 | ba := newBitArray(s * 2) |
| 394 | err := ba.SetBit(s * 2) |
| 395 | assert.Error(t, err) |
| 396 | } |
| 397 | |
| 398 | func TestClearBitAtCapacity(t *testing.T) { |
| 399 | ba := newBitArray(s * 2) |
nothing calls this directly
no test coverage detected
searching dependent graphs…