| 1 | use crate::style::{Style, Color}; |
| 2 | |
| 3 | pub struct MockRenderer { |
| 4 | pub(crate) last_color: Option<Color>, |
| 5 | pub(crate) last_text: Option<String>, |
| 6 | } |
| 7 | |
| 8 | impl MockRenderer { |
| 9 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected