()
| 609 | |
| 610 | #[test] |
| 611 | fn test_leaf_display() { |
| 612 | let leaf = make_leaf(); |
| 613 | let display = format!("{}", leaf); |
| 614 | assert!(display.contains("Leaf")); |
| 615 | assert!(display.contains("Word")); |
| 616 | assert!(display.contains("alive")); |
| 617 | } |
| 618 | |
| 619 | #[test] |
| 620 | fn test_leaf_serde() { |
nothing calls this directly
no test coverage detected