(self)
| 289 | |
| 290 | class TestTreeItem(unittest.TestCase): |
| 291 | def test_init(self): |
| 292 | widget = gui.TreeItem('test tree item') |
| 293 | widget.append(gui.TreeItem('2nd tree item')) |
| 294 | self.assertIn('test tree item', widget.repr()) |
| 295 | self.assertIn('2nd tree item', widget.repr()) |
| 296 | assertValidHTML(widget.repr()) |
| 297 | |
| 298 | class TestFileUploader(unittest.TestCase): |
| 299 | def test_init(self): |
nothing calls this directly
no test coverage detected