()
| 507 | |
| 508 | #[test] |
| 509 | fn test_iter_skipped() { |
| 510 | let mut outcome = OutputOutcome::new(); |
| 511 | outcome.record_skip("a.txt"); |
| 512 | outcome.record_skip("b.txt"); |
| 513 | |
| 514 | let skipped: Vec<_> = outcome.iter_skipped().collect(); |
| 515 | assert_eq!(skipped.len(), 2); |
| 516 | } |
| 517 | |
| 518 | // ------------------------------------------------------------------------ |
| 519 | // Redundant Edges Tests |
nothing calls this directly
no test coverage detected