(self)
| 44 | |
| 45 | class TestHBox(unittest.TestCase): |
| 46 | def test_init(self): |
| 47 | w = gui.HBox() |
| 48 | l = gui.Label('hbox_label') |
| 49 | w.append(l) |
| 50 | self.assertIn('hbox_label',w.repr()) |
| 51 | assertValidHTML(w.repr()) |
| 52 | |
| 53 | class TestVBox(unittest.TestCase): |
| 54 | def test_init(self): |
nothing calls this directly
no test coverage detected