(self)
| 148 | self.app.on_close() |
| 149 | |
| 150 | def test_main(self): |
| 151 | self.app = self.AppClass(MockRequest(), ('0.0.0.0', 8888), MockServer()) |
| 152 | root_widget = self.app.main() |
| 153 | html = root_widget.repr() |
| 154 | assertValidHTML(html) |
| 155 | |
| 156 | class TestMatplotlibApp(unittest.TestCase): |
| 157 | @classmethod |
nothing calls this directly
no test coverage detected