(self)
| 904 | ).body |
| 905 | |
| 906 | def wait_for_process(self): |
| 907 | process = self.wait_for_next_event("process", freeze=False) |
| 908 | assert process == some.dict.containing( |
| 909 | { |
| 910 | "startMethod": self.start_request.command, |
| 911 | "name": some.str, |
| 912 | "isLocalProcess": True, |
| 913 | "systemProcessId": some.int, |
| 914 | } |
| 915 | ) |
| 916 | |
| 917 | def wait_for_stop( |
| 918 | self, |
no test coverage detected