(self, actual, expected)
| 125 | self.assertNotIn('::img::test', self.root.image_names()) |
| 126 | |
| 127 | def assertEqualStrList(self, actual, expected): |
| 128 | self.assertIsInstance(actual, str) |
| 129 | self.assertEqual(self.root.splitlist(actual), expected) |
| 130 | |
| 131 | def test_configure_data(self): |
| 132 | image = tkinter.BitmapImage('::img::test', master=self.root) |
no test coverage detected