(t *testing.T)
| 692 | } |
| 693 | |
| 694 | func TestRoaringBitmapAddMany(t *testing.T) { |
| 695 | array := []uint32{5580, 33722, 44031, 57276, 83097} |
| 696 | bmp := NewBitmap() |
| 697 | bmp.AddMany(array) |
| 698 | |
| 699 | assert.EqualValues(t, len(array), bmp.GetCardinality()) |
| 700 | } |
| 701 | |
| 702 | func testAddOffset(t *testing.T, arr []uint32, offset int64) { |
| 703 | expected := make([]uint32, 0, len(arr)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…