(t *testing.T)
| 70 | } |
| 71 | |
| 72 | func TestPostingListCalculation(t *testing.T) { |
| 73 | list = &List{} |
| 74 | list.mutationMap = newMutableLayer() |
| 75 | // 144 is obtained from BenchmarkPostingList |
| 76 | require.Equal(t, uint64(144), list.DeepSize()) |
| 77 | } |
| 78 | |
| 79 | func TestUidPackCalculation(t *testing.T) { |
| 80 | pack = &pb.UidPack{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…