()
| 731 | |
| 732 | #[test] |
| 733 | fn test_path_element_conflict() { |
| 734 | let sides = vec![ConflictPath::new(), ConflictPath::new()]; |
| 735 | let elem = PathElement::conflict(sides); |
| 736 | assert!(!elem.is_scc()); |
| 737 | assert!(elem.is_conflict()); |
| 738 | assert_eq!(elem.scc_id(), None); |
| 739 | } |
| 740 | |
| 741 | #[test] |
| 742 | fn test_path_element_debug() { |
nothing calls this directly
no test coverage detected