(self)
| 205 | self.app.on_close() |
| 206 | |
| 207 | def test_main(self): |
| 208 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 209 | root_widget = self.app.main() |
| 210 | html = root_widget.repr() |
| 211 | assertValidHTML(html) |
| 212 | |
| 213 | class TestOncloseWindowApp(unittest.TestCase): |
| 214 | @classmethod |
nothing calls this directly
no test coverage detected