simulate the reply
(self, reply, args, kwargs)
| 785 | return self.send(msg) |
| 786 | |
| 787 | def __reply(self, reply, args, kwargs): |
| 788 | """ simulate the reply """ |
| 789 | binding = self.method.binding.input |
| 790 | msg = binding.get_message(self.method, args, kwargs) |
| 791 | log.debug('inject (simulated) send message:\n%s', msg) |
| 792 | binding = self.method.binding.output |
| 793 | return self.succeeded(binding, reply) |
| 794 | |
| 795 | def __fault(self, reply): |
| 796 | """ simulate the (fault) reply """ |
no test coverage detected