()
| 668 | |
| 669 | #[test] |
| 670 | fn test_conflict_path_push() { |
| 671 | let mut path = ConflictPath::new(); |
| 672 | path.push(PathElement::scc(SccId::new(1))); |
| 673 | path.push(PathElement::scc(SccId::new(2))); |
| 674 | assert_eq!(path.len(), 2); |
| 675 | } |
| 676 | |
| 677 | #[test] |
| 678 | fn test_conflict_path_iter() { |