()
| 657 | } |
| 658 | |
| 659 | fn test_new_vertex() -> Insertion<Hash> { |
| 660 | Insertion { |
| 661 | predecessors: vec![], |
| 662 | successors: vec![], |
| 663 | flag: EdgeFlags::BLOCK, |
| 664 | start: ChangePosition::new(0), |
| 665 | end: ChangePosition::new(10), |
| 666 | inode: test_hash_position(0), |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | fn test_edge_map() -> EdgeUpdate<Hash> { |
| 671 | EdgeUpdate { |
no test coverage detected