(self)
| 53 | sys.stdout = self.original_stdout |
| 54 | |
| 55 | def test_console_hello(self): |
| 56 | with self.interpreter() as interpreter: |
| 57 | (result,) = interpreter.hello("Hello pydevconsole") |
| 58 | self.assertEqual(result, "Hello eclipse") |
| 59 | |
| 60 | @pytest.mark.skipif(not CAN_EVALUATE_TOP_LEVEL_ASYNC, reason="Requires top-level async.") |
| 61 | def test_console_async(self): |
nothing calls this directly
no test coverage detected