()
| 738 | |
| 739 | #[test] |
| 740 | fn test_conflict_entity_trunk() { |
| 741 | let trunk_id = TrunkId::new(NodeId::new(1), 0); |
| 742 | let entity = ConflictEntity::Trunk(trunk_id); |
| 743 | let display = entity.to_string(); |
| 744 | assert!(display.contains("trunk")); |
| 745 | } |
| 746 | |
| 747 | #[test] |
| 748 | fn test_conflict_entity_branch() { |