(self, result_text: str, sent_plain_texts: list[str])
| 45 | |
| 46 | class _DummyRespondEvent: |
| 47 | def __init__(self, result_text: str, sent_plain_texts: list[str]) -> None: |
| 48 | self._extras = { |
| 49 | "_send_message_to_user_current_session_plain_texts": sent_plain_texts, |
| 50 | } |
| 51 | self._result = MessageEventResult().message(result_text) |
| 52 | self.send = AsyncMock() |
| 53 | self.plugins_name = [] |
| 54 | |
| 55 | def get_result(self): |
| 56 | """Return the current message result.""" |
nothing calls this directly
no test coverage detected