(self)
| 727 | assert "object" in result.lower() or "[" in result |
| 728 | |
| 729 | def test_string(self): |
| 730 | tp = self._make_processor() |
| 731 | result = tp._format_tool_response("hello") |
| 732 | assert result == "hello" |
| 733 | |
| 734 | def test_number(self): |
| 735 | tp = self._make_processor() |
nothing calls this directly
no test coverage detected