(self, function, *args, **kwargs)
| 112 | self._asyncioTestContext.run(self.tearDown) |
| 113 | |
| 114 | def _callCleanup(self, function, *args, **kwargs): |
| 115 | self._callMaybeAsync(function, *args, **kwargs) |
| 116 | |
| 117 | def _callAsync(self, func, /, *args, **kwargs): |
| 118 | assert self._asyncioRunner is not None, 'asyncio runner is not initialized' |
nothing calls this directly
no test coverage detected