(self)
| 91 | return result |
| 92 | |
| 93 | def _callSetUp(self): |
| 94 | # Force loop to be initialized and set as the current loop |
| 95 | # so that setUp functions can use get_event_loop() and get the |
| 96 | # correct loop instance. |
| 97 | self._asyncioRunner.get_loop() |
| 98 | self._asyncioTestContext.run(self.setUp) |
| 99 | self._callAsync(self.asyncSetUp) |
| 100 | |
| 101 | def _callTestMethod(self, method): |
| 102 | result = self._callMaybeAsync(method) |
nothing calls this directly
no test coverage detected