(t *testing.T)
| 141 | } |
| 142 | |
| 143 | func TestRoaringBitmapAddMany(t *testing.T) { |
| 144 | array := []uint64{5580, 33722, 44031, 57276, 83097} |
| 145 | bmp := NewBitmap() |
| 146 | bmp.AddMany(array) |
| 147 | |
| 148 | assert.EqualValues(t, len(array), bmp.GetCardinality()) |
| 149 | } |
| 150 | |
| 151 | // https://github.com/RoaringBitmap/roaring/issues/64 |
| 152 | func TestFlip64(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…