(t *testing.T)
| 14 | } |
| 15 | |
| 16 | func TestFormatToolCallResponse_Map(t *testing.T) { |
| 17 | t.Parallel() |
| 18 | formatted := formatToolCallResponse(`{"text": "hello"}`) |
| 19 | |
| 20 | assert.Equal(t, ` → (text: "hello")`, formatted) |
| 21 | } |
| 22 | |
| 23 | func TestFormatToolCallResponse_MapOfEmptyArray(t *testing.T) { |
| 24 | t.Parallel() |
nothing calls this directly
no test coverage detected