(self, exception: type[BaseException], style: str)
| 92 | print_calls: list[Any] = field(default_factory=list) |
| 93 | |
| 94 | def exit(self, exception: type[BaseException], style: str) -> None: |
| 95 | self.exit_calls.append({'exception': exception, 'style': style}) |
| 96 | |
| 97 | def print_text(self, text: Any) -> None: |
| 98 | self.print_calls.append(text) |
no outgoing calls
no test coverage detected