(&self, msg: &str)
| 420 | Self::default() |
| 421 | } |
| 422 | pub fn pass(&self, msg: &str) { |
| 423 | eprintln!(" \x1b[32m✔\x1b[0m {msg}"); |
| 424 | } |
| 425 | pub fn fail(&mut self, msg: &str) { |
| 426 | eprintln!(" \x1b[31m✘\x1b[0m {msg}"); |
| 427 | self.issues += 1; |
no outgoing calls