(self, exception)
| 90 | self.__result = result |
| 91 | |
| 92 | def set_exception(self, exception): |
| 93 | self.assertFalse(self.done()) |
| 94 | self.assertIsNotNone(exception) |
| 95 | self.__exception = exception |
| 96 | |
| 97 | def __iter__(self): |
| 98 | if not self.done(): |
no test coverage detected