()
| 621 | |
| 622 | #[test] |
| 623 | fn test_path_element_conflict() { |
| 624 | let sides = vec![ConflictPath::new(), ConflictPath::new()]; |
| 625 | let elem = PathElement::conflict(sides); |
| 626 | assert!(!elem.is_scc()); |
| 627 | assert!(elem.is_conflict()); |
| 628 | assert_eq!(elem.scc_id(), None); |
| 629 | } |
| 630 | |
| 631 | #[test] |
| 632 | fn test_path_element_debug() { |
nothing calls this directly
no test coverage detected