(t *testing.T)
| 141 | } |
| 142 | |
| 143 | func TestUIDListIntersect4Packed(t *testing.T) { |
| 144 | u := newUidPack([]uint64{1, 2, 3}) |
| 145 | v := newUidPack([]uint64{0, 5}) |
| 146 | o := IntersectWithLinPacked(u, v) |
| 147 | require.Empty(t, codec.Decode(o, 0)) |
| 148 | } |
| 149 | |
| 150 | func TestUIDListIntersect5Packed(t *testing.T) { |
| 151 | u := newUidPack([]uint64{1, 2, 3}) |
nothing calls this directly
no test coverage detected