(self, thread_id, target_id=None)
| 417 | assert pause_response.success |
| 418 | |
| 419 | def write_step_in(self, thread_id, target_id=None): |
| 420 | arguments = pydevd_schema.StepInArguments(threadId=thread_id, targetId=target_id) |
| 421 | self.wait_for_response(self.write_request(pydevd_schema.StepInRequest(arguments))) |
| 422 | |
| 423 | def write_step_next(self, thread_id, wait_for_response=True): |
| 424 | next_request = self.write_request(pydevd_schema.NextRequest(pydevd_schema.NextArguments(thread_id))) |
no test coverage detected