(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestFormatToolCallResponse_MapOfEmptyArray(t *testing.T) { |
| 24 | t.Parallel() |
| 25 | formatted := formatToolCallResponse(`{"array": []}`) |
| 26 | assert.Equal(t, ` → (array: [])`, formatted) |
| 27 | } |
| 28 | |
| 29 | func TestFormatToolCallResponse_MapOfArray(t *testing.T) { |
| 30 | t.Parallel() |
nothing calls this directly
no test coverage detected