()
| 1002 | |
| 1003 | #[test] |
| 1004 | fn test_compute_order_empty_graph() { |
| 1005 | let mut graph = AliveGraph::new(); |
| 1006 | let result = compute_order(&mut graph); |
| 1007 | |
| 1008 | assert!(result.sccs.is_empty()); |
| 1009 | assert!(!result.has_conflicts()); |
| 1010 | } |
| 1011 | |
| 1012 | #[test] |
| 1013 | fn test_compute_order_single_vertex() { |
nothing calls this directly
no test coverage detected