(self)
| 911 | class SemaphoreTests(unittest.IsolatedAsyncioTestCase): |
| 912 | |
| 913 | def test_initial_value_zero(self): |
| 914 | sem = asyncio.Semaphore(0) |
| 915 | self.assertTrue(sem.locked()) |
| 916 | |
| 917 | async def test_repr(self): |
| 918 | sem = asyncio.Semaphore() |
nothing calls this directly
no test coverage detected