(cls)
| 168 | |
| 169 | @classmethod |
| 170 | def setUpClass(cls): |
| 171 | requires('gui') |
| 172 | root = cls.root = Tk() |
| 173 | root.withdraw() |
| 174 | text = cls.text = Text(root) |
| 175 | cls.percolator = Percolator(text) |
| 176 | # Delegator stack = [Delegator(text)] |
| 177 | |
| 178 | @classmethod |
| 179 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected