()
| 336 | |
| 337 | #[test] |
| 338 | fn test_change_to_apply_debug() { |
| 339 | let cta = ChangeToApply::new(NodeId::new(1), test_hash()); |
| 340 | let debug = format!("{:?}", cta); |
| 341 | |
| 342 | assert!(debug.contains("ChangeToApply")); |
| 343 | } |
| 344 | |
| 345 | // ApplyResult Tests |
| 346 |
nothing calls this directly
no test coverage detected