()
| 572 | |
| 573 | #[test] |
| 574 | fn test_graph_index_mut_operator() { |
| 575 | let mut graph = AliveGraph::new(); |
| 576 | graph.push_vertex(AliveVertex::DUMMY); |
| 577 | |
| 578 | graph[VertexId::DUMMY].scc = 42; |
| 579 | assert_eq!(graph[VertexId::DUMMY].scc, 42); |
| 580 | } |
| 581 | |
| 582 | // ------------------------------------------------------------------------- |
| 583 | // Children Tests |
nothing calls this directly
no test coverage detected