(id uint64, val types.Val)
| 41 | } |
| 42 | |
| 43 | func createShardedMap(id uint64, val types.Val) *types.ShardedMap { |
| 44 | k := types.NewShardedMap() |
| 45 | k.Set(id, val) |
| 46 | return k |
| 47 | } |
| 48 | |
| 49 | func TestVector(t *testing.T) { |
| 50 | tree := &mathTree{ |
no test coverage detected