启动代码行统计线程 :return:
(self)
| 75 | self._thread_event = threading.Event() |
| 76 | |
| 77 | def start_thread(self): |
| 78 | """ |
| 79 | 启动代码行统计线程 |
| 80 | :return: |
| 81 | """ |
| 82 | # 启动一个线程,统计代码行 |
| 83 | self._thread_event.set() |
| 84 | count_line_tread = CountLineThread(self._thread_event, self._params, self._task_dir, self._result_filepath) |
| 85 | count_line_tread.start() |
| 86 | |
| 87 | def get_result(self): |
| 88 | """ |
no test coverage detected