(self)
| 95 | |
| 96 | class PrintOnlyUITest(unittest.TestCase): |
| 97 | def setUp(self): |
| 98 | self.output = StringIO() |
| 99 | self.log_events = [] |
| 100 | self.ui = PrintOnlyUI(self.output, self.log_events) |
| 101 | |
| 102 | def test_exit(self): |
| 103 | self.ui.exit() |
nothing calls this directly
no test coverage detected