(json_facade)
| 4252 | host_port = get_socket_name(close=True) |
| 4253 | |
| 4254 | def check_thread_events(json_facade): |
| 4255 | json_facade.write_list_threads() |
| 4256 | # Check that we have the started thread event (whenever we reconnect). |
| 4257 | started_events = json_facade.mark_messages(ThreadEvent, lambda x: x.body.reason == "started") |
| 4258 | assert len(started_events) >= 1 |
| 4259 | |
| 4260 | def check_process_event(json_facade, start_method): |
| 4261 | if start_method == "attach": |
no test coverage detected