(&mut self, color: Color)
| 20 | |
| 21 | impl super::Renderer for MockRenderer { |
| 22 | fn clear(&mut self, color: Color) { |
| 23 | self.last_color = Some(color); |
| 24 | } |
| 25 | |
| 26 | fn begin_group(&mut self, style: &Style) { |
| 27 | self.last_color = Some(style.background); |
no outgoing calls
no test coverage detected