()
| 615 | |
| 616 | #[test] |
| 617 | fn test_order_conflict_no_duplicates() { |
| 618 | let pos = make_position(42, 100); |
| 619 | let mut conflict = OrderConflict::new(pos); |
| 620 | |
| 621 | let v1 = make_vertex(100, 0, 10); |
| 622 | |
| 623 | conflict.add_insertion(v1, NodeId::new(100)); |
| 624 | conflict.add_insertion(v1, NodeId::new(100)); // Duplicate |
| 625 | |
| 626 | assert_eq!(conflict.conflict_count(), 1); |
| 627 | } |
| 628 | |
| 629 | // Conflict Tracker Tests |
| 630 |
nothing calls this directly
no test coverage detected