()
| 1160 | |
| 1161 | #[test] |
| 1162 | fn test_outcome_display_failure() { |
| 1163 | let mut context = ApplyContext::with_defaults(); |
| 1164 | context.mark_failed("test reason"); |
| 1165 | |
| 1166 | let outcome = context.finish(); |
| 1167 | let display = outcome.to_string(); |
| 1168 | |
| 1169 | assert!(display.contains("Failed")); |
| 1170 | assert!(display.contains("test reason")); |
| 1171 | } |
| 1172 | |
| 1173 | #[test] |
| 1174 | fn test_outcome_display_with_conflicts() { |
nothing calls this directly
no test coverage detected