(self)
| 141 | self.restore_stdout() |
| 142 | |
| 143 | def testQuestionMark_2(self): |
| 144 | self.redirect_stdout() |
| 145 | try: |
| 146 | self.add_exec("int?") |
| 147 | found = sys.stdout.getvalue() |
| 148 | if "Convert" not in found: |
| 149 | raise AssertionError('Expected to find "Convert" in %s' % (found,)) |
| 150 | finally: |
| 151 | self.restore_stdout() |
| 152 | |
| 153 | def test_gui(self): |
| 154 | try: |
nothing calls this directly
no test coverage detected