(t *testing.T)
| 134 | } |
| 135 | |
| 136 | func TestUIDListIntersect3Packed(t *testing.T) { |
| 137 | u := newUidPack([]uint64{1, 2, 3}) |
| 138 | v := newUidPack([]uint64{2}) |
| 139 | o := IntersectWithLinPacked(u, v) |
| 140 | require.Equal(t, []uint64{2}, codec.Decode(o, 0)) |
| 141 | } |
| 142 | |
| 143 | func TestUIDListIntersect4Packed(t *testing.T) { |
| 144 | u := newUidPack([]uint64{1, 2, 3}) |
nothing calls this directly
no test coverage detected