(self, tool_name, arguments)
| 76 | self.called_args = None |
| 77 | |
| 78 | async def call_tool(self, tool_name, arguments): |
| 79 | self.called_tool = tool_name |
| 80 | self.called_args = arguments |
| 81 | if self.raise_exception: |
| 82 | raise Exception("Simulated call_tool exception") |
| 83 | return self.return_result |
| 84 | |
| 85 | |
| 86 | class DummyToolManager: |
no outgoing calls
no test coverage detected