()
| 107 | |
| 108 | |
| 109 | def test_find_thread(): |
| 110 | from _pydevd_bundle.pydevd_constants import get_current_thread_id |
| 111 | |
| 112 | assert pydevd_find_thread_by_id("123") is None |
| 113 | |
| 114 | assert pydevd_find_thread_by_id(get_current_thread_id(threading.current_thread())) is threading.current_thread() |
| 115 | |
| 116 | |
| 117 | def check_dap_log_message(log_message, expected, evaluated, eval_locals=None): |
nothing calls this directly
no test coverage detected