()
| 617 | |
| 618 | #[test] |
| 619 | fn test_new_vertex_no_context() { |
| 620 | let nv = Insertion { |
| 621 | predecessors: vec![], |
| 622 | successors: vec![], |
| 623 | flag: EdgeFlags::BLOCK, |
| 624 | start: ChangePosition::new(0), |
| 625 | end: ChangePosition::new(10), |
| 626 | inode: test_hash_position(0), |
| 627 | }; |
| 628 | |
| 629 | assert!(!nv.has_predecessors()); |
| 630 | assert!(!nv.has_successors()); |
| 631 | } |
| 632 | |
| 633 | #[test] |
| 634 | fn test_new_vertex_display() { |
nothing calls this directly
no test coverage detected