(self)
| 251 | class TestIntVar(TestBase): |
| 252 | |
| 253 | def test_default(self): |
| 254 | v = IntVar(self.root) |
| 255 | self.assertEqual(0, v.get()) |
| 256 | |
| 257 | def test_get(self): |
| 258 | v = IntVar(self.root, 123, "name") |
nothing calls this directly
no test coverage detected