(self)
| 136 | self.assertEqual(tcl.getvar('a'),'1') |
| 137 | |
| 138 | def testGetVarArray(self): |
| 139 | tcl = self.interp |
| 140 | tcl.eval('set a(1) 1') |
| 141 | self.assertEqual(tcl.getvar('a(1)'),'1') |
| 142 | |
| 143 | def testGetVarException(self): |
| 144 | tcl = self.interp |
nothing calls this directly
no test coverage detected