(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestFormatToolCallResponse_Empty(t *testing.T) { |
| 10 | t.Parallel() |
| 11 | formatted := formatToolCallResponse(``) |
| 12 | |
| 13 | assert.Equal(t, ` → ()`, formatted) |
| 14 | } |
| 15 | |
| 16 | func TestFormatToolCallResponse_Map(t *testing.T) { |
| 17 | t.Parallel() |
nothing calls this directly
no test coverage detected