(self, n, coro)
| 1261 | return tasks |
| 1262 | |
| 1263 | async def gather_tasks(self, n, coro): |
| 1264 | tasks = self.make_tasks(n, coro) |
| 1265 | res = await asyncio.gather(*tasks) |
| 1266 | return res, tasks |
| 1267 | |
| 1268 | async def test_barrier(self): |
| 1269 | barrier = asyncio.Barrier(self.N) |
no test coverage detected