(self)
| 894 | |
| 895 | class TestTaskSemaphore(unittest.TestCase): |
| 896 | def setUp(self): |
| 897 | self.semaphore = TaskSemaphore(1) |
| 898 | |
| 899 | def test_should_block_at_max_capacity(self): |
| 900 | self.semaphore.acquire('a', blocking=False) |
nothing calls this directly
no test coverage detected