(self, *return_values)
| 378 | self.invocation = invocation |
| 379 | |
| 380 | def thenReturn(self, *return_values): |
| 381 | for return_value in return_values: |
| 382 | self.__then(functools.partial(return_, return_value)) |
| 383 | return self |
| 384 | |
| 385 | def thenRaise(self, *exceptions): |
| 386 | for exception in exceptions: |