()
| 1068 | |
| 1069 | #[test] |
| 1070 | fn test_context_stats_mut() { |
| 1071 | let mut context = ApplyContext::with_defaults(); |
| 1072 | context.stats_mut().add_trunk_created(); |
| 1073 | assert_eq!(context.stats().trunks_created(), 1); |
| 1074 | } |
| 1075 | |
| 1076 | // ApplyOutcome Tests |
| 1077 |
nothing calls this directly
no test coverage detected