()
| 754 | |
| 755 | #[test] |
| 756 | fn test_conflict_entity_leaf() { |
| 757 | let leaf_id = LeafId::new(NodeId::new(1), 0); |
| 758 | let entity = ConflictEntity::Leaf(leaf_id); |
| 759 | let display = entity.to_string(); |
| 760 | assert!(display.contains("leaf")); |
| 761 | } |
| 762 | |
| 763 | #[test] |
| 764 | fn test_conflict_entity_path() { |