(self)
| 732 | assert result == "hello" |
| 733 | |
| 734 | def test_number(self): |
| 735 | tp = self._make_processor() |
| 736 | result = tp._format_tool_response(42) |
| 737 | assert result == "42" |
| 738 | |
| 739 | |
| 740 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected