(self)
| 232 | class TestStringVar(TestBase): |
| 233 | |
| 234 | def test_default(self): |
| 235 | v = StringVar(self.root) |
| 236 | self.assertEqual("", v.get()) |
| 237 | |
| 238 | def test_get(self): |
| 239 | v = StringVar(self.root, "abc", "name") |
nothing calls this directly
no test coverage detected