()
| 171 | |
| 172 | #[test] |
| 173 | fn test_refill_and_print_empty() { |
| 174 | let mut console = MockConsole::default(); |
| 175 | let paragraphs: &[&str] = &[]; |
| 176 | refill_and_print(&mut console, paragraphs, " ").unwrap(); |
| 177 | assert!(console.captured_out().is_empty()); |
| 178 | } |
| 179 | |
| 180 | #[test] |
| 181 | fn test_refill_and_print_one() { |
nothing calls this directly
no test coverage detected