(t *testing.T)
| 384 | } |
| 385 | |
| 386 | func TestGetBitAtCapacity(t *testing.T) { |
| 387 | ba := newBitArray(s * 2) |
| 388 | _, err := ba.GetBit(s * 2) |
| 389 | assert.Error(t, err) |
| 390 | } |
| 391 | |
| 392 | func TestSetBitAtCapacity(t *testing.T) { |
| 393 | ba := newBitArray(s * 2) |
nothing calls this directly
no test coverage detected
searching dependent graphs…