(t *testing.T)
| 80 | } |
| 81 | |
| 82 | func TestRoaringBitmapAddManyCOW(t *testing.T) { |
| 83 | array := []uint32{5580, 33722, 44031, 57276, 83097} |
| 84 | bmp := NewBitmap() |
| 85 | bmp.SetCopyOnWrite(true) |
| 86 | |
| 87 | bmp.AddMany(array) |
| 88 | |
| 89 | assert.EqualValues(t, len(array), bmp.GetCardinality()) |
| 90 | } |
| 91 | |
| 92 | // https://github.com/RoaringBitmap/roaring/issues/64 |
| 93 | func TestFlip64COW(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…