(console_setup)
| 125 | |
| 126 | |
| 127 | def test_console_simple(console_setup): |
| 128 | with console_setup.check_console() as writer: |
| 129 | writer.execute_line("a = 10") |
| 130 | writer.execute_line('print("TEST SUCEEDED")') |
| 131 | writer.close() |
| 132 | writer.finished_ok = True |
| 133 | |
| 134 | |
| 135 | def test_console_debugger_connected(console_setup): |
nothing calls this directly
no test coverage detected