(t *testing.T)
| 3327 | } |
| 3328 | |
| 3329 | func TestFromBitSet(t *testing.T) { |
| 3330 | testDense(func(name string, rb *Bitmap) { |
| 3331 | t.Run(fmt.Sprintf("%s", name), func(t *testing.T) { |
| 3332 | dense := rb.ToBitSet() |
| 3333 | cp := FromBitSet(dense) |
| 3334 | assert.True(t, rb.Equals(cp)) |
| 3335 | }) |
| 3336 | }) |
| 3337 | } |
| 3338 | |
| 3339 | func TestRoaringArrayValidation(t *testing.T) { |
| 3340 | a := newRoaringArray() |
nothing calls this directly
no test coverage detected
searching dependent graphs…