(self)
| 346 | self.assertEqual(str(cm.exception), errmsg) |
| 347 | |
| 348 | def test_configure_menu(self): |
| 349 | widget = self.create() |
| 350 | menu = tkinter.Menu(widget, name='menu') |
| 351 | self.checkParam(widget, 'menu', menu, eq=widget_eq) |
| 352 | menu.destroy() |
| 353 | |
| 354 | def test_configure_width(self): |
| 355 | widget = self.create() |
nothing calls this directly
no test coverage detected