()
| 585 | |
| 586 | #[test] |
| 587 | fn test_graph_push_child() { |
| 588 | let mut graph = AliveGraph::new(); |
| 589 | graph.push_child(None, VertexId::DUMMY); |
| 590 | |
| 591 | assert_eq!(graph.len_children(), 1); |
| 592 | } |
| 593 | |
| 594 | #[test] |
| 595 | fn test_graph_push_child_to_last() { |
nothing calls this directly
no test coverage detected