(self)
| 52 | |
| 53 | class TestVBox(unittest.TestCase): |
| 54 | def test_init(self): |
| 55 | w = gui.VBox() |
| 56 | l = gui.Label('vbox_label') |
| 57 | w.append(l) |
| 58 | self.assertIn('vbox_label',w.repr()) |
| 59 | assertValidHTML(w.repr()) |
| 60 | |
| 61 | class TestTabBox(unittest.TestCase): |
| 62 | def test_init(self): |
nothing calls this directly
no test coverage detected