()
| 594 | |
| 595 | #[test] |
| 596 | fn test_node_display() { |
| 597 | let node = make_goal("n-1", "Fix the bug"); |
| 598 | let display = format!("{}", node); |
| 599 | |
| 600 | assert!(display.contains("n-1")); |
| 601 | assert!(display.contains("goal")); |
| 602 | assert!(display.contains("Fix the bug")); |
| 603 | } |
| 604 | |
| 605 | #[test] |
| 606 | fn test_edge_display() { |
nothing calls this directly
no test coverage detected