()
| 6 | import threading |
| 7 | import time |
| 8 | def thread_job(): |
| 9 | print('T1 start\n') |
| 10 | for i in range(10): |
| 11 | time.sleep(0.1) |
| 12 | print('T1 finish\n') |
| 13 | |
| 14 | def T2_job(): |
| 15 | print('T2 start\n') |
nothing calls this directly
no outgoing calls
no test coverage detected