()
| 1104 | |
| 1105 | #[test] |
| 1106 | fn test_outcome_into_stats() { |
| 1107 | let mut context = ApplyContext::with_defaults(); |
| 1108 | context.record_trunk_created(); |
| 1109 | |
| 1110 | let outcome = context.finish(); |
| 1111 | let stats = outcome.into_stats(); |
| 1112 | |
| 1113 | assert_eq!(stats.trunks_created(), 1); |
| 1114 | } |
| 1115 | |
| 1116 | #[test] |
| 1117 | fn test_outcome_into_conflicts() { |
nothing calls this directly
no test coverage detected