()
| 778 | |
| 779 | #[test] |
| 780 | fn test_conflict_path_push() { |
| 781 | let mut path = ConflictPath::new(); |
| 782 | path.push(PathElement::scc(SccId::new(1))); |
| 783 | path.push(PathElement::scc(SccId::new(2))); |
| 784 | assert_eq!(path.len(), 2); |
| 785 | } |
| 786 | |
| 787 | #[test] |
| 788 | fn test_conflict_path_iter() { |