(self)
| 27 | class BasicThreadTest(unittest.TestCase): |
| 28 | |
| 29 | def setUp(self): |
| 30 | self.done_mutex = thread.allocate_lock() |
| 31 | self.done_mutex.acquire() |
| 32 | self.running_mutex = thread.allocate_lock() |
| 33 | self.random_mutex = thread.allocate_lock() |
| 34 | self.created = 0 |
| 35 | self.running = 0 |
| 36 | self.next_ident = 0 |
| 37 | |
| 38 | key = threading_helper.threading_setup() |
| 39 | self.addCleanup(threading_helper.threading_cleanup, *key) |
| 40 | |
| 41 | |
| 42 | class ThreadRunningTests(BasicThreadTest): |
nothing calls this directly
no test coverage detected