()
| 537 | |
| 538 | #[test] |
| 539 | fn test_trunk_display() { |
| 540 | let trunk = make_trunk(); |
| 541 | let display = format!("{}", trunk); |
| 542 | assert!(display.contains("Trunk")); |
| 543 | assert!(display.contains("src/main.rs")); |
| 544 | assert!(display.contains("alive")); |
| 545 | } |
| 546 | |
| 547 | #[test] |
| 548 | fn test_trunk_serde() { |
nothing calls this directly
no test coverage detected