(&mut self, text: &str)
| 344 | } |
| 345 | |
| 346 | fn write(&mut self, text: &str) -> io::Result<()> { |
| 347 | let text = remove_control_chars(text.to_owned()); |
| 348 | |
| 349 | self.captured_out.push(CapturedOut::Write(text)); |
| 350 | Ok(()) |
| 351 | } |
| 352 | |
| 353 | fn bucket_fill(&mut self, xy: PixelsXY) -> io::Result<()> { |
| 354 | self.captured_out.push(CapturedOut::BucketFill(xy)); |
nothing calls this directly
no test coverage detected