()
| 784 | |
| 785 | #[test] |
| 786 | fn test_compute_order_empty_graph() { |
| 787 | let mut graph = AliveGraph::new(); |
| 788 | let result = compute_order(&mut graph); |
| 789 | |
| 790 | assert!(result.sccs.is_empty()); |
| 791 | assert!(!result.has_conflicts()); |
| 792 | } |
| 793 | |
| 794 | #[test] |
| 795 | fn test_compute_order_single_vertex() { |
nothing calls this directly
no test coverage detected