()
| 880 | } |
| 881 | |
| 882 | fn test_new_vertex() -> Insertion<Option<Hash>> { |
| 883 | Insertion { |
| 884 | predecessors: vec![], |
| 885 | successors: vec![], |
| 886 | flag: EdgeFlags::BLOCK, |
| 887 | start: ChangePosition::new(0), |
| 888 | end: ChangePosition::new(10), |
| 889 | inode: test_hash_position(0), |
| 890 | } |
| 891 | } |
| 892 | |
| 893 | // HashedChange Tests |
| 894 |
no test coverage detected