(self)
| 186 | self.app.on_close() |
| 187 | |
| 188 | def test_main(self): |
| 189 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 190 | root_widget = self.app.main() |
| 191 | html = root_widget.repr() |
| 192 | assertValidHTML(html) |
| 193 | |
| 194 | class TestNotificationApp(unittest.TestCase): |
| 195 | @classmethod |
nothing calls this directly
no test coverage detected