(self)
| 3586 | """Test case for asyncio.run_coroutine_threadsafe.""" |
| 3587 | |
| 3588 | def setUp(self): |
| 3589 | super().setUp() |
| 3590 | self.loop = asyncio.new_event_loop() |
| 3591 | self.set_event_loop(self.loop) # Will cleanup properly |
| 3592 | |
| 3593 | async def add(self, a, b, fail=False, cancel=False): |
| 3594 | """Wait 0.05 second and return a + b.""" |
nothing calls this directly
no test coverage detected