(t *testing.T)
| 127 | } |
| 128 | |
| 129 | func TestUIDListIntersect2Packed(t *testing.T) { |
| 130 | u := newUidPack([]uint64{1, 2, 3}) |
| 131 | v := newUidPack([]uint64{1, 2, 3, 4, 5}) |
| 132 | o := IntersectWithLinPacked(u, v) |
| 133 | require.Equal(t, []uint64{1, 2, 3}, codec.Decode(o, 0)) |
| 134 | } |
| 135 | |
| 136 | func TestUIDListIntersect3Packed(t *testing.T) { |
| 137 | u := newUidPack([]uint64{1, 2, 3}) |
nothing calls this directly
no test coverage detected