()
| 620 | |
| 621 | #[test] |
| 622 | fn test_tool_result_to_string_empty() { |
| 623 | let result = CallToolResult { |
| 624 | content: vec![], |
| 625 | is_error: false, |
| 626 | }; |
| 627 | let output = tool_result_to_string(&result); |
| 628 | assert_eq!(output, ""); |
| 629 | } |
| 630 | |
| 631 | #[test] |
| 632 | fn test_tool_result_to_string_image() { |
nothing calls this directly
no test coverage detected