(self)
| 60 | |
| 61 | class TestTabBox(unittest.TestCase): |
| 62 | def test_init(self): |
| 63 | w = gui.TabBox() |
| 64 | l = gui.Label('testTabBox_label') |
| 65 | w.add_tab(l, key='testtabbox', callback=None) |
| 66 | self.assertIn('testTabBox_label',w.repr()) |
| 67 | assertValidHTML(w.repr()) |
| 68 | |
| 69 | |
| 70 | class TestButton(unittest.TestCase): |
nothing calls this directly
no test coverage detected