(t *testing.T)
| 148 | } |
| 149 | |
| 150 | func TestUIDListIntersect5Packed(t *testing.T) { |
| 151 | u := newUidPack([]uint64{1, 2, 3}) |
| 152 | v := newUidPack([]uint64{3, 5}) |
| 153 | o := IntersectWithLinPacked(u, v) |
| 154 | require.Equal(t, []uint64{3}, codec.Decode(o, 0)) |
| 155 | } |
| 156 | |
| 157 | func TestUIDListIntersect6Packed(t *testing.T) { |
| 158 | u := newUidPack([]uint64{1, 2, 3, 4, 5, 6, 7, 9}) |
nothing calls this directly
no test coverage detected