(case_setup)
| 507 | |
| 508 | |
| 509 | def test_case_8(case_setup): |
| 510 | with case_setup.test_file("_debugger_case89.py") as writer: |
| 511 | writer.write_add_breakpoint(10, "Method3") |
| 512 | writer.write_make_initial_run() |
| 513 | |
| 514 | hit = writer.wait_for_breakpoint_hit("111") |
| 515 | |
| 516 | writer.write_step_return(hit.thread_id) |
| 517 | |
| 518 | hit = writer.wait_for_breakpoint_hit("109", line=15) |
| 519 | |
| 520 | writer.write_run_thread(hit.thread_id) |
| 521 | |
| 522 | assert 9 == writer._sequence, "Expected 9. Had: %s" % writer._sequence |
| 523 | |
| 524 | writer.finished_ok = True |
| 525 | |
| 526 | |
| 527 | def test_case_9(case_setup): |
nothing calls this directly
no test coverage detected