()
| 507 | |
| 508 | #[test] |
| 509 | fn test_trunk_set_state() { |
| 510 | let mut trunk = make_trunk(); |
| 511 | assert!(trunk.state().is_alive()); |
| 512 | |
| 513 | trunk.set_state(TrunkState::Deleted); |
| 514 | assert!(trunk.state().is_deleted()); |
| 515 | } |
| 516 | |
| 517 | #[test] |
| 518 | fn test_trunk_set_path() { |
nothing calls this directly
no test coverage detected