()
| 7 | |
| 8 | impl MockRenderer { |
| 9 | pub fn new() -> Self { |
| 10 | Self { |
| 11 | last_color: None, |
| 12 | last_text: None, |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | pub fn last_color(&self) -> Color { |
| 17 | self.last_color.unwrap_or(Color::rgb(0.0, 0.0, 0.0)) |
nothing calls this directly
no outgoing calls
no test coverage detected