()
| 489 | |
| 490 | #[test] |
| 491 | fn test_record_skip() { |
| 492 | let mut outcome = OutputOutcome::new(); |
| 493 | outcome.record_skip("unchanged.txt"); |
| 494 | |
| 495 | assert_eq!(outcome.files_skipped(), 1); |
| 496 | assert!(!outcome.is_empty()); |
| 497 | } |
| 498 | |
| 499 | #[test] |
| 500 | fn test_record_multiple_skips() { |
nothing calls this directly
no test coverage detected